#include <bspline.h>
Public Methods | |
| SPLINE () | |
| ~SPLINE () | |
| int | Compare (const SPLINE &Spline) |
| int | GetMyPosition () const |
| void | SetMyPosition (int newPosition) |
Public Attributes | |
| int | linkPosition |
| int | Degree |
| int | NumControl |
| int | NumPoints |
| VECTOR * | Control |
| VECTOR * | Output |
| float | StartTime |
| float | EndTime |
| float | CopyOfStartTime |
| float | CopyOfEndTime |
| bool | Active |
| bool | Repeat |
| float | Red |
| float | Green |
| float | Blue |
|
|
Definition at line 12 of file bspline.h.
00012 {};
|
|
|
Definition at line 13 of file bspline.h.
00013 {};
|
|
|
Definition at line 22 of file bspline.cpp. References bigger, linkPosition, same, and smaller.
00023 {
00024 if (linkPosition < Spline.linkPosition)
00025 return smaller;
00026 if (linkPosition > Spline.linkPosition)
00027 return bigger;
00028 else
00029 return same;
00030 }
|
|
|
Definition at line 16 of file bspline.h. References linkPosition.
00016 {return linkPosition;}
|
|
|
Definition at line 17 of file bspline.h. References linkPosition.
00017 {linkPosition = newPosition;}
|
|
|
Definition at line 28 of file bspline.h. Referenced by AddSpline(), and LoadSplines(). |
|
|
Definition at line 32 of file bspline.h. Referenced by AddSpline(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 22 of file bspline.h. Referenced by AddSpline(), bspline(), bsplinepoint(), DeleteSpline(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 27 of file bspline.h. Referenced by AddSpline(), bsplinepoint(), and LoadSplines(). |
|
|
Definition at line 26 of file bspline.h. Referenced by AddSpline(), bsplinepoint(), and LoadSplines(). |
|
|
Definition at line 19 of file bspline.h. Referenced by AddSpline(), bspline(), bsplinepoint(), and LoadSplines(). |
|
|
Definition at line 25 of file bspline.h. Referenced by AddSpline(), bsplinepoint(), and LoadSplines(). |
|
|
Definition at line 31 of file bspline.h. Referenced by AddSpline(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 18 of file bspline.h. Referenced by AddSpline(), Compare(), GetMyPosition(), and SetMyPosition(). |
|
|
Definition at line 20 of file bspline.h. Referenced by AddSpline(), bspline(), bsplinepoint(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 21 of file bspline.h. Referenced by AddSpline(), bspline(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 23 of file bspline.h. Referenced by AddSpline(), bspline(), DeleteSpline(), and DrawSplines(). |
|
|
Definition at line 30 of file bspline.h. Referenced by AddSpline(), DrawSplines(), and LoadSplines(). |
|
|
Definition at line 29 of file bspline.h. Referenced by AddSpline(), bsplinepoint(), and LoadSplines(). |
|
|
Definition at line 24 of file bspline.h. Referenced by AddSpline(), bsplinepoint(), and LoadSplines(). |
1.2.15