*TracingMode()

Sets the node trace mode.

Syntax

*TracingMode (mode, numSteps)

Application

HyperView

Inputs

mode
“FromFirstStep”
Indicates that all steps from the first step to the current animation step will be traced.
“LastNumberOfSteps”
Indicates that the last numSteps steps will be traced.
“AllSteps”
Indicates that all steps will be traced.
“List”
Indicates that only the steps in the list defiend by *TracingSteps() will be traced.
numSteps
Ignored unless the mode is set to “LastNumberOfSteps”. In that case, an integer number specifies the last number of steps to trace.

Context

*BeginGraphic()

*BeginNote()

Example

*BeginTracing()
    *LineColor("185 185 185")
    *LineWidth(1)
    *TracingMode("List", 1)
    *TracingSteps(0, 1, 2, 3, 4, 5)
    *BeginTracingNode()
        *NodeLocator("1 Shell 4 Node 189")
        *EntityColor("255   0   0  76")
    *EndTracingNode()
    *ObeyTrackingSystem("Yes")
    *ProjectMode("element")
*EndTracing()