Class BezierPath

java.lang.Object
org.oscim.utils.geom.BezierPath

public class BezierPath extends Object
  • Constructor Details

    • BezierPath

      public BezierPath()
  • Method Details

    • bezier3

      public static Point bezier3(Point p1, Point p2, Point p3, double mu)
      from http://paulbourke.net/geometry/bezier/index.html Three control point Bezier interpolation mu ranges from 0 to 1, start to end of the curve
    • cubicBezier

      public static Point cubicBezier(Point p1, Point p2, Point p3, Point p4, double mu)
      from http://paulbourke.net/geometry/bezier/index.html Four control point Bezier interpolation mu ranges from 0 to 1, start to end of curve
    • cubicSplineControlPoints

      public static List<Point> cubicSplineControlPoints(Point[] coords, float alpha)
      from geodroid FIXME