Uses of Class
com.graphbuilder.curve.Curve

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

    Subclasses of Curve in com.graphbuilder.curve
    Modifier and Type
    Class
    Description
    class 
    General n-point Bezier curve implementation.
    class 
    General non-rational B-Spline implementation where the degree can be specified.
    class 
    The Cardinal-spline passes through the points in the control-path specified by the group-iterator.
    class 
    The CatmullRomSpline is equal to the CardinalSpline with the value of alpha fixed at 0.5.
    class 
    The cubic B-spline is defined by third order polynomial basis functions.
    class 
    The Lagrange curve passes through the control-points specified by the group-iterator.
    class 
    The natural-cubic-spline is constructed using piecewise third order polynomials which pass through all the control-points specified by the group-iterator.
    class 
    General implementation of the Non-Uniform Rational B-spline or NURB-Spline.
    class 
    Curves that extend the ParametricCurve class are continuous and can use the BinaryCurveApproximationAlgorithm class to generate a sequence of points that approximate the curve.
    class 
    A polyline is a sequence of connected line segments based on the control-path points specified by the group-iterator.
    Methods in com.graphbuilder.curve that return Curve
    Modifier and Type
    Method
    Description
    ControlPath.getCurve(int index)
    Returns the curve at the specified index.
    ControlPath.setCurve(Curve c, int index)
    Sets a curve at the specified index in the curve array, returning the curve that was at that index.
    Methods in com.graphbuilder.curve with parameters of type Curve
    Modifier and Type
    Method
    Description
    void
    ControlPath.addCurve(Curve c)
    Adds a curve to the curve array at index location numCurves.
    void
    ControlPath.insertCurve(Curve c, int index)
    Inserts a curve at the specified index in the curve array.
    void
    ControlPath.removeCurve(Curve c)
    Removes the first occurrence of the specified curve from the curve array.
    ControlPath.setCurve(Curve c, int index)
    Sets a curve at the specified index in the curve array, returning the curve that was at that index.