open_toontown_panda3d/panda/src/physics/angularVectorForce.I

23 lines
675 B
Plaintext

// Filename: angularVectorForce.I
// Created by: charles (09Aug00)
//
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// Function : set_vector
// Access : public
////////////////////////////////////////////////////////////////////
void AngularVectorForce::
set_vector(const LVector3f &v) {
_fvec = v;
}
////////////////////////////////////////////////////////////////////
// Function : set_vector
// Access : public
////////////////////////////////////////////////////////////////////
void AngularVectorForce::
set_vector(float x, float y, float z) {
_fvec.set(x, y, z);
}