draw.spad line 1 [edit on github]
TopLevelDrawFunctionsForCompiledFunctions provides top level functions for drawing graphics of expressions.
draw(f, a..b, c..d)
draws the graph of z = f(x, y)
as x
ranges from min(a, b)
to max(a, b)
and y
ranges from min(c, d)
to max(c, d)
.
draw(f, a..b, c..d, l)
draws the graph of z = f(x, y)
as x
ranges from min(a, b)
to max(a, b)
and y
ranges from min(c, d)
to max(c, d)
. and the options contained in the list l
of the domain DrawOption
are applied.
draw(f, a..b, l)
draws the graph of the parametric curve f
as t
ranges from min(a, b)
to max(a, b)
.
draw(f, a..b, l)
draws the graph of the parametric curve f
as t
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
draw(f, a..b, c..d)
draws the graph of the parametric surface f(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
The options contained in the list l
of the domain DrawOption
are applied.
draw(f, a..b, c..d)
draws the graph of the parametric surface f(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
. The options contained in the list l
of the domain DrawOption
are applied.
draw(curve(f, g, h), a..b, l)
draws the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
.
draw(curve(f, g, h), a..b, l)
draws the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
draw(surface(f, g, h), a..b, c..d)
draws the graph of the parametric surface x = f(u, v)
, y = g(u, v)
, z = h(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
.
draw(surface(f, g, h), a..b, c..d)
draws the graph of the parametric surface x = f(u, v)
, y = g(u, v)
, z = h(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
; The options contained in the list l
of the domain DrawOption
are applied.
draw(f, a..b)
draws the graph of y = f(x)
as x
ranges from min(a, b)
to max(a, b)
.
draw(f, a..b, l)
draws the graph of y = f(x)
as x
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
draw(curve(f, g), a..b)
draws the graph of the parametric curve x = f(t), y = g(t)
as t
ranges from min(a, b)
to max(a, b)
.
draw(curve(f, g), a..b, l)
draws the graph of the parametric curve x = f(t), y = g(t)
as t
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
makeObject(f, a..b, l)
creates the graph of y = f(x)
as x
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
makeObject(curve(f, g), a..b, l)
creates the graph of the parametric curve x = f(t), y = g(t)
as t
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
makeObject(f, a..b, c..d)
returns a space of the domain ThreeSpace which contains the graph of z = f(x, y)
as x
ranges from min(a, b)
to max(a, b)
and y
ranges from min(c, d)
to max(c, d)
.
makeObject(f, a..b, c..d, l)
returns a space of the domain ThreeSpace which contains the graph of z = f(x, y)
as x
ranges from min(a, b)
to max(a, b)
and y
ranges from min(c, d)
to max(c, d)
, and the options contained in the list l
of the domain DrawOption
are applied.
makeObject(sp, curve(f, g, h), a..b)
returns the space sp
of the domain ThreeSpace with the addition of the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
.
makeObject(curve(f, g, h), a..b, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
. The options contained in the list l
of the domain DrawOption
are applied.
makeObject(f, a..b, c..d, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric surface f(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
.
makeObject(f, a..b, c..d, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric surface f(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
; The options contained in the list l
of the domain DrawOption
are applied.
makeObject(sp, curve(f, g, h), a..b)
returns the space sp
of the domain ThreeSpace with the addition of the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
.
makeObject(curve(f, g, h), a..b, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric curve x = f(t), y = g(t), z = h(t)
as t
ranges from min(a, b)
to max(a, b)
; The options contained in the list l
of the domain DrawOption
are applied.
makeObject(surface(f, g, h), a..b, c..d, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric surface x = f(u, v)
, y = g(u, v)
, z = h(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
.
makeObject(surface(f, g, h), a..b, c..d, l)
returns a space of the domain ThreeSpace which contains the graph of the parametric surface x = f(u, v)
, y = g(u, v)
, z = h(u, v)
as u
ranges from min(a, b)
to max(a, b)
and v
ranges from min(c, d)
to max(c, d)
. The options contained in the list l
of the domain DrawOption
are applied.
recolor()
, uninteresting to top level user; exported in order to compile package.