Divides a 3-D point by a value
rhinoscriptsyntax.PointDivide (point, divide)
rhinoscript.pointvector.PointDivide (point, divide)
point |
Required. List of 3 numbers or Point3d. The 3-D point to divide. |
divide |
Required. Number. The a non-zero value to divide. |
Point3d |
The resulting 3-D point if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
point = rs.PointDivide([5,5,0], 5)
print point