TopLevelDrawFunctionsForPointsΒΆ
draw.spad line 1084 [edit on github]
TopLevelDrawFunctionsForPoints provides top level functions for drawing curves and surfaces described by sets of points.
- draw: (List DoubleFloat, List DoubleFloat) -> TwoDimensionalViewport
draw(lx, ly)
plots the curve constructed of points (x
,y
) forx
inlx
fory
inly
.
- draw: (List DoubleFloat, List DoubleFloat, List DoubleFloat) -> ThreeDimensionalViewport
draw(lx, ly, lz)
draws the surface constructed by projecting the values in thelz
list onto the rectangular grid formed by thelx X ly
.
- draw: (List DoubleFloat, List DoubleFloat, List DoubleFloat, List DrawOption) -> ThreeDimensionalViewport
draw(lx, ly, lz, l)
draws the surface constructed by projecting the values in thelz
list onto the rectangular grid formed by the The options contained in the listl
of the domainDrawOption
are applied.
- draw: (List DoubleFloat, List DoubleFloat, List DrawOption) -> TwoDimensionalViewport
draw(lx, ly, l)
plots the curve constructed of points (x
,y
) forx
inlx
fory
inly
. The options contained in the listl
of the domainDrawOption
are applied.
- draw: (List Point DoubleFloat, List DrawOption) -> TwoDimensionalViewport
draw(lp, l)
plots the curve constructed from the list of pointslp
. The options contained in the listl
of the domainDrawOption
are applied.
- draw: List Point DoubleFloat -> TwoDimensionalViewport
draw(lp)
plots the curve constructed from the list of pointslp
.