*Marker()
Specifies the default display settings for markers.
Syntax
*Marker (Default/"Name", On/Off, IDOn/IDOff, Color, Opaque/Transparent, Shaded/Wireframe, NoTrace/FullTrace/TraceBySteps/TraceLast)
Application
HyperView
Inputs
- Default
- Indicates that all markers are displayed using the default settings.
- "Name"
- A specific marker name. Must be in double quotes. Attributes are applied to specified force only.
- On
- Displays the marker in the graphic window.
- Off
- Turns off the marker displayed in the graphic window.
- IDOn
- Displays the name of the marker in the graphic window.
- IDOff
- Turns off the name of the marker displayed in the graphic window.
- Color
- A number between 0 and 63 that specifies the marker color.
- Opaque
- Defines the marker vector as solid.
- Transparent
- Defines the marker vector as see-through.
- Shaded
- Displays the marker as a filled object.
- Wireframe
- Displays the marker as a wireframe object.
- NoTrace
- Turns off tracing for the marker.
- FullTrace
- Displays the entire traced path of the marker.
- TraceBySteps
- Displays the path of the marker as it passes through each timestep.
- TraceLast
- Displays the traced path of the marker restricted to the last five timesteps.
Context
*BeginGraphicDefaults()
Example
• • •
*BeginGraphicDefaults()
*SetOrientation(Top)
*SetBackgroundColor(0)
*Part(Default, On, -1, Opaque, Shaded, NoTrace)
*Part("P/999", Off, 8, Opaque, Shaded, NoTrace)
*Force(Default, Off, 2, Opaque, Shaded, NoTrace,
Force, Resultant)
*Marker(Default, Off, Idoff, 5, Opaque, Shaded,
NoTrace)
*Marker("M/9901", On, IdOn, 16, Opaque, Shaded,
FullTrace)
*Marker("M/9920", On, IdOff 32, Opaque, Shaded,
NoTrace)
*SetPartColorList(8,9,10,11,12,13,14,15)
*EndGraphicDefaults()
• • •
Comments
Default attributes for individual markers can be specified by including a *Marker() statement for each marker and using the name of the specific marker in place of the Default option.
Colors are numbered from 0 to 63 representing any of the 64 colors on the palette.
FullTrace displays the traced path without animating the model. The model must be animated for TraceBySteps and TraceLast to display the path of motion.