mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[11833] remove trailing whitespaces
Signed-off-by: SilverIce <slifeleaf@gmail.com>
This commit is contained in:
parent
ee7f3811e0
commit
09e331767d
21 changed files with 41 additions and 41 deletions
|
|
@ -57,7 +57,7 @@ namespace Movement
|
||||||
uint32 splineId;
|
uint32 splineId;
|
||||||
float initialOrientation;
|
float initialOrientation;
|
||||||
|
|
||||||
/** Returns true to show that the arguments were configured correctly and MoveSpline initialization will succeed. */
|
/** Returns true to show that the arguments were configured correctly and MoveSpline initialization will succeed. */
|
||||||
bool Validate() const;
|
bool Validate() const;
|
||||||
private:
|
private:
|
||||||
bool _checkPathBounds() const;
|
bool _checkPathBounds() const;
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ public:
|
||||||
index_type getPointCount() const { return points.size();}
|
index_type getPointCount() const { return points.size();}
|
||||||
const Vector3& getPoint(index_type i) const { return points[i];}
|
const Vector3& getPoint(index_type i) const { return points[i];}
|
||||||
|
|
||||||
/** Initializes spline. Don't call other methods while spline not initialized. */
|
/** Initializes spline. Don't call other methods while spline not initialized. */
|
||||||
void init_spline(const Vector3 * controls, index_type count, EvaluationMode m);
|
void init_spline(const Vector3 * controls, index_type count, EvaluationMode m);
|
||||||
void init_cyclic_spline(const Vector3 * controls, index_type count, EvaluationMode m, index_type cyclic_point);
|
void init_cyclic_spline(const Vector3 * controls, index_type count, EvaluationMode m, index_type cyclic_point);
|
||||||
|
|
||||||
|
|
@ -171,7 +171,7 @@ public:
|
||||||
index_type computeIndexInBounds(float t) const;
|
index_type computeIndexInBounds(float t) const;
|
||||||
void computeIndex(float t, index_type& out_idx, float& out_u) const;
|
void computeIndex(float t, index_type& out_idx, float& out_u) const;
|
||||||
|
|
||||||
/** Initializes spline. Don't call other methods while spline not initialized. */
|
/** Initializes spline. Don't call other methods while spline not initialized. */
|
||||||
void init_spline(const Vector3 * controls, index_type count, EvaluationMode m) { SplineBase::init_spline(controls,count,m);}
|
void init_spline(const Vector3 * controls, index_type count, EvaluationMode m) { SplineBase::init_spline(controls,count,m);}
|
||||||
void init_cyclic_spline(const Vector3 * controls, index_type count, EvaluationMode m, index_type cyclic_point) { SplineBase::init_cyclic_spline(controls,count,m,cyclic_point);}
|
void init_cyclic_spline(const Vector3 * controls, index_type count, EvaluationMode m, index_type cyclic_point) { SplineBase::init_cyclic_spline(controls,count,m,cyclic_point);}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11832"
|
#define REVISION_NR "11833"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue