#include "GeomExport.h"
#include "maxheap.h"
#include "gfloat.h"
#include "assert1.h"
#include <math.h>
Typedef Documentation
Function Documentation
float Length |
( |
const Point3 & |
v |
) |
[inline] |
float FLength |
( |
const Point3 & |
v |
) |
[inline] |
__forceinline float LengthSquared |
( |
const Point3 & |
v |
) |
|
int MaxComponent |
( |
const Point3 & |
|
) |
|
int MinComponent |
( |
const Point3 & |
|
) |
|
__forceinline Point3 operator* |
( |
float |
f, |
|
|
const Point3 & |
a |
|
) |
|
|
__forceinline Point3 operator* |
( |
const Point3 & |
a, |
|
|
float |
f |
|
) |
|
|
__forceinline Point3 operator/ |
( |
const Point3 & |
a, |
|
|
float |
f |
|
) |
|
|
__forceinline Point3 operator+ |
( |
const Point3 & |
a, |
|
|
float |
f |
|
) |
|
|
__forceinline float DotProd |
( |
const Point3 & |
a, |
|
|
const Point3 & |
b |
|
) |
|
|
{
return(a.x*b.x+a.y*b.y+a.z*b.z);
}