Changeset 3517 in orxonox.OLD for orxonox/branches/trackManager/src/lib/math/curve.cc
- Timestamp:
- Mar 12, 2005, 12:34:15 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/trackManager/src/lib/math/curve.cc
r3498 r3517 46 46 } 47 47 48 /** 49 \brief adds a new Node to the bezier Curve ath Position insertPosition 50 \param insertPosition The Position on the Path to insert the node. 51 \param newNode a Vector to the position of the new node 52 */ 48 53 void Curve::addNode(const Vector& newNode, unsigned int insertPosition) 49 54 { … … 253 258 /** 254 259 \brief Calulates the direction of the Curve at time t. 255 \param The time at which to evaluate the curve.256 \returns The vvaluatedVector.260 \param t The time at which to evaluate the curve. 261 \returns The Directional Vector. 257 262 */ 258 263 Vector BezierCurve::calcDir (float t) … … 261 266 } 262 267 268 /** 269 \brief Calulates the acceleration of the Curve at time t. 270 \param t The time at which to evaluate the curve. 271 \returns The acceleration-Vector. 272 */ 263 273 Vector BezierCurve::calcAcc (float t) 264 274 { … … 416 426 /** 417 427 \brief Calulates the direction of the Curve at time t. 418 \param The time at which to evaluate the curve.428 \param t The time at which to evaluate the curve. 419 429 \returns The vvaluated Vector. 420 430 */
Note: See TracChangeset
for help on using the changeset viewer.