Exemplo n.º 1
0
 /** Reverses the tangents and normals associated with this BSpline */
 public void reverseNormalsAndTangents() {
   for (CubicBezier b : approximationCurves) {
     for (Vector2 p : b.getNormalReferences()) p.mul(-1);
     for (Vector2 p : b.getTangentReferences()) p.mul(-1);
   }
 }