Scales a 3-D point.
rhinoscriptsyntax.PointScale (point, scale)
rhinoscript.pointvector.PointScale (point, scale)
point |
Required. List of 3 numbers or Point3d. The 3-D point to scale. |
scale |
Required. Number. The scale factor to apply. |
Point3d |
The resulting 3-D point if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
point = rs.PointScale([1,0,0], 5)
print point