// Filename: curveFitter.I // Created by: drose (04Mar01) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) Carnegie Mellon University. All rights reserved. // // All use of this software is subject to the terms of the revised BSD // license. You should have received a copy of this license along // with this source code in a file named "LICENSE." // //////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////// // Function: CurveFitter::DataPoint::Constructor // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE CurveFitter::DataPoint:: DataPoint() : _t(0.0f), _xyz(0.0f, 0.0f, 0.0f), _hpr(0.0f, 0.0f, 0.0f), _tangent(0.0f, 0.0f, 0.0f), _hpr_tangent(0.0f, 0.0f, 0.0f) { } //////////////////////////////////////////////////////////////////// // Function: CurveFitter::DataPoint::output // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE void CurveFitter::DataPoint:: output(ostream &out) const { out << "Time " << _t << " xyz " << _xyz << " hpr " << _hpr << " tan " << _tangent; } //////////////////////////////////////////////////////////////////// // Function: CurveFitter::DataPoint::operator < // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE bool CurveFitter::DataPoint:: operator < (const DataPoint &other) const { return _t < other._t; }