*** empty log message ***

This commit is contained in:
Mike Goslin 2001-01-30 01:59:55 +00:00
parent 59c6b83fb5
commit 0ccdca9d80
2 changed files with 12 additions and 0 deletions

View File

@ -22,3 +22,13 @@ INLINE void LinearVectorForce::
set_vector(float x, float y, float z) {
_fvec.set(x, y, z);
}
////////////////////////////////////////////////////////////////////
// Function : get_vector
// Access : Public
// Description :
////////////////////////////////////////////////////////////////////
INLINE LVector3f LinearVectorForce::
get_vector(void) const {
return _fvec;
}

View File

@ -30,6 +30,8 @@ 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) {
return _type_handle;