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 value determined by multiplying a fixed value (number or another Point3) with the x, y and z coordinate values of the first point parameter. This function is constant and does not modify either of the passed parameters.

Parameters
Parameters 
Description 
const Point3<T> & pt 
A point whose coordinate values will be multiplied with a fixed value (number or another Point). 
T val 
A fixed value which is multiplied by the x, y and z coordinate values of a point. 
Return Value

A new Point3 value whose coordinates result from the multiplication of an existing point and a fixed value (number or another Point3).