Copies the source transformation t to this one.
SITransformation.Copy( SITransformation in_pSrcTransfo ); |
SITransformation.Copy( in_pSrcTransfo ); |
Parameter | Type | Description |
---|---|---|
in_pSrcTransfo | SITransformation | Source transformation |
dim t1, t2 ' Create transformation. set t1 = XSIMath.CreateTransform set t2 = XSIMath.CreateTransform 'Do something on t1 't2 = t1 t2.Copy t1 |