PlottablePlaneCurveCategoryΒΆ
pcurve.spad line 1 [edit on github]
PlottablePlaneCurveCategory is the category of curves in the plane which may be plotted via the graphics facilities. Functions are provided for obtaining lists of lists of points, representing the branches of the curve, and for determining the ranges of the x
-coordinates and y
-coordinates of the points on the curve.
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- listBranches: % -> List List Point DoubleFloat
listBranches(c)
returns a list of lists of points, representing the branches of the curvec
.
- xRange: % -> Segment DoubleFloat
xRange(c)
returns the range of thex
-coordinates of the points on the curvec
.
- yRange: % -> Segment DoubleFloat
yRange(c)
returns the range of they
-coordinates of the points on the curvec
.