Divides a 3-D point by a value
Rhino.PointDivide (arrPoint, dblDivide)
arrPoint |
Required. Array. The 3-D point to divide. |
dblScale |
Required. Number. The a non-zero value to divide. |
Array |
The resulting 3-D point if successful. |
Null |
On error. |
Dim arrPoint
arrPoint = Rhino.PointDivide(Array(5,5,0), 5)
Rhino.Print Rhino.Pt2Str(arrPoint)