Click or drag to resize
SoTextureMatrixElement Class

Stores the current texture matrix.

Inheritance Hierarchy

Namespace: OIV.Inventor.Elements
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax
public class SoTextureMatrixElement : SoAccumulatedElement

The SoTextureMatrixElement type exposes the following members.

Methods
  NameDescription
Public methodCallGetElt Obsolete.
Calls CallGetElt(System.Int32(0)).
Public methodCallMakeEltIdentity Obsolete.
Calls CallMakeEltIdentity(System.Int32(0)).
Public methodCallMultElt Obsolete.
Calls CallMultElt(matrix, System.Int32(0)).
Public methodCallRotateEltBy Obsolete.
Calls CallRotateEltBy(translation, System.Int32(0)).
Public methodCallScaleEltBy Obsolete.
Calls CallScaleEltBy(scaleFactor, System.Int32(0)).
Public methodCallTranslateEltBy Obsolete.
Calls CallTranslateEltBy(translation, System.Int32(0)).
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodStatic memberGet(SoState)
Calls Get(state, System.Int32(0)).
Public methodStatic memberGet(SoState, Int32)

Returns current matrix from the state.

Public methodStatic memberGetClassStackIndex Obsolete.

Returns the stack id for this element.

Public methodGetElt Obsolete.
Calls GetElt(System.Int32(0)).
Public methodGetHashCode
Overrides GetHashCode().
(Inherited from SoNetBase.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMakeEltIdentity Obsolete.
Calls MakeEltIdentity(System.Int32(0)).
Public methodStatic memberMakeIdentity

Sets the texture matrix to the identity matrix.

Public methodStatic memberMult

Multiplies the given matrix into the texture matrix.

Public methodMultElt Obsolete.
Calls MultElt(matrix, System.Int32(0)).
Public methodPop

Pops element.

(Inherited from SoElement.)
Public methodPush

Overrides push() method to copy values from next instance in the stack.

(Overrides SoAccumulatedElementPush(SoState).)
Public methodStatic memberRotateBy

Multiplies a matrix that performs the specified transformation into the texture matrix.

Public methodRotateEltBy Obsolete.
Calls RotateEltBy(translation, System.Int32(0)).
Public methodStatic memberScaleBy

Multiplies a matrix that performs the specified transformation into the texture matrix.

Public methodScaleEltBy Obsolete.
Calls ScaleEltBy(scaleFactor, System.Int32(0)).
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberTranslateBy

Multiplies a matrix that performs the specified transformation into the texture matrix.

Public methodTranslateEltBy Obsolete.
Calls TranslateEltBy(translation, System.Int32(0)).
Top
Remarks

This element stores the current texture matrix - the cumulative transformation applied to subsequent shapes. Because the matrix is cumulative, this class is derived from SoAccumulatedElement. The set() method replaces the current matrix, while all the others (mult(), translateBy(), etc.) multiply into it. Node id's of the nodes that affect the element are accumulated properly.

See Also