Point3::Dot

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

Dot returns the dot product of two points.

Parameters
Parameters 
Description 
T x2 
The x value of the point used for the dot product. 
T y2 
The y value of the point used for the dot product. 
T z2 
The z value of the point used for the dot product. 
const Point3<T> & pt 
Point whose coordinates are used for the dot product. 
Return Value

A value containing the dot product.