Copies the source rotation r to this rotation.
SIRotation.Copy( SIRotation in_pSrcRot ); |
SIRotation.Copy( r ); |
Parameter | Type | Description |
---|---|---|
r | SIRotation | Source rotation |
dim r1, r2 ' Create rotations. set r1 = XSIMath.CreateRotation set r2 = XSIMath.CreateRotation 'Do something with rotation r1 r1.Copy r2 |