draw.spad line 1084 [edit on github]
TopLevelDrawFunctionsForPoints provides top level functions for drawing curves and surfaces described by sets of points.
draw(lx, ly, lz)
draws the surface constructed by projecting the values in the lz
list onto the rectangular grid formed by the lx X ly
.
draw(lx, ly, lz, l)
draws the surface constructed by projecting the values in the lz
list onto the rectangular grid formed by the The options contained in the list l
of the domain DrawOption
are applied.
draw(lx, ly)
plots the curve constructed of points (x
, y
) for x
in lx
for y
in ly
.
draw(lx, ly, l)
plots the curve constructed of points (x
, y
) for x
in lx
for y
in ly
. The options contained in the list l
of the domain DrawOption
are applied.
draw(lp)
plots the curve constructed from the list of points lp
.
draw(lp, l)
plots the curve constructed from the list of points lp
. The options contained in the list l
of the domain DrawOption
are applied.