FillMode
How a geometric shape is drawn and colored.
Variants variants
MajorWireframe
= 1
Lines are drawn around the parts of the shape which directly correspond to the logged data.
Examples of what this means:
- An
archetypes.Ellipsoids3D
will draw three axis-aligned ellipses that are cross-sections of each ellipsoid, each of which displays two out of three of the sizes of the ellipsoid. - For
archetypes.Boxes3D
, it is the edges of the box, identical toDenseWireframe
.
DenseWireframe
= 2
Many lines are drawn to represent the surface of the shape in a see-through fashion.
Examples of what this means:
- An
archetypes.Ellipsoids3D
will draw a wireframe triangle mesh that approximates each ellipsoid. - For
archetypes.Boxes3D
, it is the edges of the box, identical toMajorWireframe
.
Solid
= 3
The surface of the shape is filled in with a solid color. No lines are drawn.
Arrow datatype arrow-datatype
uint8