Point3::Div

Point3::Div
SF_INLINE Point3<T>& Div(const Point3<T> & pt);
SF_INLINE Point3<T>& Div(T val);
SF_INLINE Point3<T>& Div(T x2, T y2, T z2);
Description

Div divides the x, y and z coordinate values of the current point by a fixed value (number or another Scaleform::Render::Point3).

Parameters
Parameters 
Description 
const Point3<T> & pt 
A point whose coordinates divide the coordinates of the current point. 
T val 
A fixed value that divides the x, y and z coordinate values of the current point. 
T x2 
Variable with which the x coordinate of the point is divided. 
T y2 
Variable with which the y coordinate of the point is divided. 
T z2 
Variable with which the z coordinate of the point is divided. 
Return Value

Scaleform::Render::Point3 whose coordinates are divided by a fixed value.