Point3::/

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

/ operator returns a new Point3 variable whose coordinates are calculated by dividing a set value (number or another Point3) from the x, y and z coordinate values of a point parameter.

Parameters
Parameters 
Description 
const Point3<T> & pt 
The current point parameter whose x, y and z coordinate values will be divided by a set value (either a number or another point) in order to determine the returned Point3 coordinate values. 
T val 
A fixed value that divides the x, y and z coordinate values of the previous point. 
Return Value

A new Point3 value whose coordinates result from dividing a fixed value (number or another Point3) from a passed point value.