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) for- xin- lxfor- yin- ly.
- draw: (List DoubleFloat, List DoubleFloat, List DoubleFloat) -> ThreeDimensionalViewport
- draw(lx, ly, lz)draws the surface constructed by projecting the values in the- lzlist onto the rectangular grid formed by the- lx 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 the- lzlist onto the rectangular grid formed by the The options contained in the list- lof the domain- DrawOptionare applied.
- draw: (List DoubleFloat, List DoubleFloat, List DrawOption) -> TwoDimensionalViewport
- draw(lx, ly, l)plots the curve constructed of points (- x,- y) for- xin- lxfor- yin- ly. The options contained in the list- lof the domain- DrawOptionare applied.
- draw: (List Point DoubleFloat, List DrawOption) -> TwoDimensionalViewport
- draw(lp, l)plots the curve constructed from the list of points- lp. The options contained in the list- lof the domain- DrawOptionare applied.
- draw: List Point DoubleFloat -> TwoDimensionalViewport
- draw(lp)plots the curve constructed from the list of points- lp.