Scales a 3-D point.
Rhino.PointScale (arrPoint, dblScale)
|
arrPoint |
Required. Array. The 3-D point to scale. |
|
dblScale |
Required. Number. The scale factor to apply. |
|
Array |
The resulting 3-D point if successful. |
|
Null |
On error. |
Dim arrPoint
arrPoint = Rhino.PointScale(Array(1,0,0), 5)
Rhino.Print Rhino.Pt2Str(arrPoint)