PointDivide

Divides a 3-D point by a value

Syntax

rhinoscriptsyntax.PointDivide (point, divide)

rhinoscript.pointvector.PointDivide (point, divide)

Parameters

point

Required.  List of 3 numbers or Point3d.  The 3-D point to divide.

divide

Required.  Number.  The a non-zero value to divide.

Returns

Point3d

The resulting 3-D point if successful.

None

On error.

Example

import rhinoscriptsyntax as rs

point = rs.PointDivide([5,5,0], 5)

print point

Also See

PointAdd

PointCompare

PointScale

PointSubtract

PointTransform