Point3::/=

Point3::/=
SF_INLINE const Point3<T>& operator /=(const Point3<T> & pt);
SF_INLINE const Point3<T>& operator /=(T val);
Description

/= operator divides the x, y and z coordinate values of a point with a fixed value (number or another Point3).

Parameters
Parameters 
Description 
const Point3<T> & pt 
A point parameter whose coordinate values divide the coordinate values of the current point. 
T val 
A value that divides the coordinate values of the current point. 
Return Value

New Point3 resulting from the division.