Copies the values of a given vector into this one.
SIVector3.Copy( SrcVector ); |
Parameter | Type | Description |
---|---|---|
SrcVector | SIVector3 | The source vector |
dim v1, v2 ' Create 3D vectors. set v1 = XSIMath.CreateVector3(1.0, 2.0, 3.0) set v2 = XSIMath.CreateVector3 ' v2 = v1 v2.Copy v1 |