*** empty log message ***

This commit is contained in:
Mike Goslin 2001-01-30 19:47:47 +00:00
parent fcbecf7877
commit 70dea3303f
2 changed files with 12 additions and 2 deletions

View File

@ -7,7 +7,7 @@
// Function : set_vector
// Access : public
////////////////////////////////////////////////////////////////////
void AngularVectorForce::
INLINE void AngularVectorForce::
set_vector(const LVector3f &v) {
_fvec = v;
}
@ -16,7 +16,16 @@ set_vector(const LVector3f &v) {
// Function : set_vector
// Access : public
////////////////////////////////////////////////////////////////////
void AngularVectorForce::
INLINE void AngularVectorForce::
set_vector(float x, float y, float z) {
_fvec.set(x, y, z);
}
////////////////////////////////////////////////////////////////////
// Function : get_vector
// Access : public
////////////////////////////////////////////////////////////////////
INLINE LVector3f AngularVectorForce::
get_vector(void) const {
return _fvec;
}

View File

@ -28,6 +28,7 @@ PUBLISHED:
INLINE void set_vector(const LVector3f& v);
INLINE void set_vector(float x, float y, float z);
INLINE LVector3f get_vector(void) const;
public:
static TypeHandle get_class_type(void) {