SoModelMatrixElementPopMatrix Method |
This method is used by the TransformSeparator node.
Namespace: OIV.Inventor.ElementsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public static void PopMatrix(
SoState state,
SbMatrix m
)
Public Shared Sub PopMatrix (
state As SoState,
m As SbMatrix
)
public:
static void PopMatrix(
SoState^ state,
SbMatrix m
)
static member PopMatrix :
state : SoState *
m : SbMatrix -> unit
Parameters
- state
- Type: OIV.Inventor.MiscSoState
- m
- Type: OIV.InventorSbMatrix
Remarks WARNING! For proper caching behavior, the matrix returned by .pushMatrix() must be used ONLY as a later argument to .popMatrix(), and you must NOT modify the matrix between the push and the pop. If you need the matrix for any other reason, you MUST use the .get() routine.
See Also