Uses of Class
com.graphbuilder.curve.MultiPath

Packages that use MultiPath
Package
Description
 
  • Uses of MultiPath in com.graphbuilder.curve

    Modifier and Type
    Class
    Description
    class 
    The ShapeMultiPath is-a MultiPath and implements the java.awt.Shape interface.
    Methods in com.graphbuilder.curve with parameters of type MultiPath
    Modifier and Type
    Method
    Description
    void
    BezierCurve.appendTo(MultiPath mp)
    The only requirement for this curve is the group-iterator must be in range or this method returns quietly.
    void
    BSpline.appendTo(MultiPath mp)
    There are two types of requirements for this curve, common requirements and requirements that depend on the knotVectorType.
    void
    CardinalSpline.appendTo(MultiPath mp)
    The requirements for this curve are the group-iterator must be in-range and have a group size of at least 4.
    void
    CatmullRomSpline.appendTo(MultiPath mp)
    The requirements for this curve are the group-iterator must be in-range and have a group size of at least 4.
    void
    CubicBSpline.appendTo(MultiPath mp)
    The requirements for this curve are the group-iterator must be in-range and have a group size of at least 4.
    abstract void
    Curve.appendTo(MultiPath mp)
    Appends a sequence of points defined by this curve to the multi-path.
    void
    LagrangeCurve.appendTo(MultiPath mp)
    For the control-points to be interpolated in order, the knot-vector values should be strictly increasing, however that is not required.
    void
    NaturalCubicSpline.appendTo(MultiPath mp)
    The requirements for this curve are the group-iterator must be in-range and have a group size of at least 2.
    void
    NURBSpline.appendTo(MultiPath mp)
    The requirements of the appendTo method include the requirements of the BSpline appendTo method, plus a couple more.
    void
    Polyline.appendTo(MultiPath mp)
     
    static void
    BinaryCurveApproximationAlgorithm.genPts(ParametricCurve pc, double t_min, double t_max, MultiPath mp)
    Appends a sequence of points to the multi-path using the lineTo method exclusively.