|  | SrtTransformMultiply Method (SrtTransform, SrtTransform) | 
            Multiplies two SRT transforms.
            
 
Namespace: DigitalRune.Animation.CharacterAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
 Syntax
Syntaxpublic static SrtTransform Multiply(
	SrtTransform srt1,
	SrtTransform srt2
)
Public Shared Function Multiply ( 
	srt1 As SrtTransform,
	srt2 As SrtTransform
) As SrtTransform
public:
static SrtTransform Multiply(
	SrtTransform srt1, 
	SrtTransform srt2
)
static member Multiply : 
        srt1 : SrtTransform * 
        srt2 : SrtTransform -> SrtTransform 
Parameters
- srt1
- Type: DigitalRune.Animation.CharacterSrtTransform
 The first transform.
- srt2
- Type: DigitalRune.Animation.CharacterSrtTransform
 The second transform.
Return Value
Type: 
SrtTransformThe product of srt1 and srt2: srt1 * srt2.
 Remarks
Remarks
            When product (srt1 * srt2) is applied to a vector 
            v the transformation are applied in the following order: 
            v' = srt1 * srt2 * v
            That means, the vector is first transformed by srt2 and then by 
            srt1.
            
 See Also
See Also