Graphics3D
Usage
• Graphics3D[primitives, options] represents a three-dimensional graphical image.
Notes
• Graphics3D is displayed using Show. • The following graphics primitives can be used:
Cuboid[{ , , }, ... ] | cuboid | Line[{{ , , }, ... }] | line | | Point[{x, y, z}] | point | Polygon[{{ , , }, ... }] | polygon | | Text[expr, {x, y, z}] | text |
• The following graphics directives can be used:
AbsoluteDashing[{ , ... }] | absolute line dashing specification | | AbsolutePointSize[d] | absolute point size specification | | AbsoluteThickness[w] | absolute line thickness specification | | CMYKColor[c, m, y, k] | color specification | Dashing[{ , ... }] | line dashing specification | | EdgeForm[spec] | polygon edge specification | | FaceForm[spec] | polygon face specification | | GrayLevel[i] | gray-level specification | | Hue[h] | hue specification | | PointSize[d] | point size specification | | RGBColor[r, g, b] | color specification | | SurfaceColor[spec] | surface properties specification | | Thickness[w] | line thickness specification |
• The following options can be given: • Nested lists of graphics primitives can be given. Specifications such as GrayLevel remain in effect only until the end of the list which contains them. • The standard print form for Graphics3D[ ... ] is -Graphics3D-. InputForm prints the explicit list of primitives. • The default light sources used are {{{1,0,1}, RGBColor[1,0,0]}, {{1,1,1}, RGBColor[0,1,0]}, {{0,1,1}, RGBColor[0,0,1]}}. • Graphics3D[SurfaceGraphics[ ... ]] can be used to convert a SurfaceGraphics object into Graphics3D representation. • Graphics[SurfaceGraphics[ ... ]] generates a representation in terms of ordinary 2D graphics primitives. • New in Version 1.
|