plots
polygonplot3d
create a plot of one or more polygons
Calling Sequence
Parameters
Description
Examples
polygonplot3d(L, options)
polygonplot3d(A, options)
polygonplot3d(v1, v2, v3, options)
L
-
list of polygon vertices, each given as a 3-element list
A
n by 3 Matrix, where n is any positive integer
v1, v2, v3
Vectors, all of the same length
options
(optional) equations of the form option=value, where option is any of the available 3d plot options, or useunits
The polygonplot3d command is used to create a 3-D plot of a polygon. The polygon's vertices are provided as the list L, the Matrix A, or the Vectors v1 and v2.
The list L must contain 3-element lists or Vectors [x, y, z], each representing the numeric x-, y- and z-coordinates of a vertex, optionally with units.
The Matrix must be n by 3, where n is any positive integer. Each row of the Matrix contains the x-, y- and z-coordinates of a vertex, optionally with units. If a 3 by n Matrix is given, with n not equal to 3, then it will be automatically transposed. The Vectors, representing the x-coordinates, y-coordinates, and z-coordinates respectively, again optionally with units, can have any length, but all must have the same length.
The option useunits=[ux, uy, uz] specifies the units to be used on the x-, y-, and z-axis, respectively. By default, Maple picks a suitable unit of a dimension appropriate for the data. It is typically the units given for the first point. All data are converted to this unit and the unit is used as the label for the axis, unless labels are specified using the labels option. (See plot3d/option for the labels option.) If you want to specify the unit for some but not all of the three axes and let Maple pick the others, you can specify the ones you don't want to choose as "default" or default. If not all values given for a particular coordinate axis can be converted to the appropriate unit (specified or default), Maple issues an error.
Remaining arguments are interpreted as options which are specified as equations of the form option = value. These options are the same as those available for the plot3d command, as described in plot3d options.
Multiple polygons can be plotted by providing a list containing polygons in the list or Matrix form, as described above. In this case, the color option value can be a list of n colors, where n is the number of polygons.
with⁡plots:
polygonplot3d⁡Matrix⁡0,1,1,1,−1,2,3,0,5,1,1,1,datatype=float,color=Indigo,axes=boxed
another_poly≔seq⁡cos⁡π⁢T40,sin⁡π⁢T40,T40,T=0..40:
polygonplot3d⁡another_poly
list_polys≔seq⁡seq⁡T10,S20,sin⁡T⁢S20,T=0..20,S=1..4:
polygonplot3d⁡list_polys,color=Blue,Purple,HotPink,Pink
The default units for this input are meters, seconds, and kilograms.
v4≔2⁢Unit⁡m,3⁢Unit⁡ft,4⁢Unit⁡dm
v4≔2⁢m3⁢ft4⁢dm
v5≔200⁢Unit⁡s,2⁢Unit⁡min,0.1⁢Unit⁡h
v5≔200⁢s2⁢min0.1⁢h
v6≔0.1⁢Unit⁡kg,8⁢Unit⁡oz,0.8⁢Unit⁡lb
v6≔0.1⁢kg8⁢oz0.8⁢lb
polygonplot3d⁡v4,v5,v6
If we want to display the points in feet, minutes, and ounces, we can specify that as follows.
polygonplot3d⁡v4,v5,v6,useunits=Unit⁡ft,Unit⁡min,Unit⁡oz
If we are fine with meters on the x-axis and kilograms on the z-axis, but want minutes on the y-axis, we can use this.
polygonplot3d⁡v4,v5,v6,useunits=default,Unit⁡min,default
If we try to specify the x-axis as kilograms and the y-axis as newtons, an error is issued.
polygonplot3d⁡v4,v5,v6,useunits=Unit⁡kg,Unit⁡N,default
Error, (in plots:-polygonplot3d) unable to convert `m` to `kg`
See Also
Matrix
plot/color
plot3d
plot3d/option
plots/polygonplot
Download Help Document