Curve(..)

An array of points derived from abstract class _Curve defined by a continuous function

def Curve

constructors:
  • Curve(point1,point2,point3,point4)
  • PcCurve(point1,point2,point3,point4)
returns:

the cubic BSpline curve with point1 and point2 as end points and point3 and point4 as control points

site ref:

http://www.moshplant.com/direct-or/bezier/math.html

class Bezier

constructors:
  • Curve([list of points])
  • BezierCurve([list of points])
returns:

the Bezier curve with the list of points as control points, point order significant

site ref:

http://www.moshplant.com/direct-or/bezier/

class PcCurve

constructors:
  • Curve(point1,point2,point3,point4)
  • PcCurve(point1,point2,point3,point4)
returns:

the cubic BSpline curve with point1 and point2 as end points and point3 and point4 as control points

site ref:

http://www.moshplant.com/direct-or/bezier/math.html