Point3::*=

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

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

Parameters
Parameters 
Description 
const Point3<T> & pt 
A passed point whose x, y and z coordinates are multiplied by the current point's x, y and z coordinates respectively. 
T val 
A fixed value multiplied by the current point's x, y and z coordinate values. 
Return Value

New Point3 resulting from the multiplication.