3ds Max C++ API Reference
KeyTrack.h File Reference
#include "../maxheap.h"
#include "BipExp.h"
#include "Tracks.h"
#include "../point4.h"

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

◆ vector2D

typedef Point3 vector2D

Function Documentation

◆ operator*()

vector operator* ( float  f,
const vector a 
)
inline
47  {
48  return(vector(a.x*f, a.y*f, a.z*f, a.w)); //MG was a.w*f
49  }
Definition: KeyTrack.h:17
float w
Definition: KeyTrack.h:22
float y
Definition: KeyTrack.h:20
float x
Definition: KeyTrack.h:19
float z
Definition: KeyTrack.h:21

◆ VtoP4()

Point4 VtoP4 ( const vector v)
inline
51 { return Point4(v.x, v.y, v.z, v.w); }
Definition: point4.h:43