Home | History | Annotate | Download | only in math

Lines Matching defs:cycle

30     private boolean cycle;
53 * @param cycle true if the spline cycle.
55 public Spline(SplineType splineType, Vector3f[] controlPoints, float curveTension, boolean cycle) {
65 this.cycle = cycle;
82 * @param cycle true if the spline cycle.
84 public Spline(SplineType splineType, List<Vector3f> controlPoints, float curveTension, boolean cycle) {
91 this.cycle = cycle;
97 * The cycle is set to <b>false</b> by default.
131 if (cycle) {
141 if (cycle) {
154 if (controlPoints.size() > 2 && this.cycle) {
158 if (controlPoints.size() >= 2 && this.cycle) {
298 * returns true if the spline cycle
301 return cycle;
305 * set to true to make the spline cycle
306 * @param cycle
308 public void setCycle(boolean cycle) {
311 if (this.cycle && !cycle) {
314 if (!this.cycle && cycle) {
317 this.cycle = cycle;
320 this.cycle = cycle;
420 oc.write(cycle, "cycle", false);
442 cycle = in.readBoolean("cycle", false);