PlottableSpaceCurveCategoryΒΆ
pcurve.spad line 34 [edit on github]
PlottableSpaceCurveCategory is the category of curves in 3-space 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-
, y-
, and z
-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
.
- zRange: % -> Segment DoubleFloat
zRange(c)
returns the range of thez
-coordinates of the points on the curvec
.