updated smoothMover to return a forward Axis with the command get_forward_axis

This commit is contained in:
Zachary Pavlov 2005-06-28 23:37:25 +00:00
parent 722d0cce4e
commit 43ba8af715
2 changed files with 12 additions and 1 deletions

View File

@ -291,6 +291,17 @@ get_smooth_pos() const {
return _smooth_pos;
}
////////////////////////////////////////////////////////////////////
// Function: SmoothMover::get_forward_axis
// Access: Published
// Description: Returns the smoothed position as computed by a
// previous call to compute_smooth_position().
////////////////////////////////////////////////////////////////////
INLINE const LVecBase3f &SmoothMover::
get_forward_axis() const {
return _forward_axis;
}
////////////////////////////////////////////////////////////////////
// Function: SmoothMover::get_smooth_hpr
// Access: Published

View File

@ -104,7 +104,7 @@ PUBLISHED:
INLINE float get_smooth_forward_velocity() const;
INLINE float get_smooth_rotational_velocity() const;
INLINE const LVecBase3f &get_forward_axis() const;
// These static methods control the global properties of all
// SmoothMovers.