KeyTrack.h File Reference

#include "..\maxheap.h"
#include "BipExp.h"
#include "Tracks.h"
#include "..\point4.h"

Go to the source code of this file.

Classes

class   vector
class   path_property
class   path_properties

Typedefs

typedef Point3  vector2D

Functions

vector  operator* (float f, const vector &a)
Point4  VtoP4 (const vector &v)

Typedef Documentation

typedef Point3 vector2D

Definition at line 63 of file KeyTrack.h.


Function Documentation

vector operator* ( float  f,
const vector a 
) [inline]

Definition at line 57 of file KeyTrack.h.

                                                  {
    return(vector(a.x*f, a.y*f, a.z*f, a.w)); //MG was a.w*f
    }
Point4 VtoP4 ( const vector v ) [inline]

Definition at line 61 of file KeyTrack.h.

{ return Point4(v.x, v.y, v.z, v.w); }