Adds a 3D point or a 3d vector to a 3D point.
Rhino.PointAdd (arrPoint1, arrPoint2)
|
arrPoint1 |
Required. Array. The 3D point to add to. |
|
arrPoint2 |
Required. Array. The 3D point or a 3D vector to add. |
|
Array |
The resulting 3D point if successful. |
|
Null |
On error. |
Dim arrPoint1, arrPoint2, arrPoint
arrPoint1 = Array(1,1,1)
arrPoint2 = Array(2,2,2)
arrPoint = Rhino.PointAdd(arrPoint1, arrPoint2)
Rhino.Print Rhino.Pt2Str(arrPoint)