Package | Description |
---|---|
org.opengis.geometry.coordinate |
Set of geometric objects.
|
Modifier and Type | Field and Description |
---|---|
static KnotType |
KnotType.PIECEWISE_BEZIER
The form of knots is appropriate for a piecewise Bezier curve.
|
static KnotType |
KnotType.QUASI_UNIFORM
The form of knots is appropriate for a quasi-uniform B-spline.
|
static KnotType |
KnotType.UNIFORM
The form of knots is appropriate for a uniform B-spline.
|
Modifier and Type | Method and Description |
---|---|
KnotType[] |
KnotType.family()
Returns the list of enumerations of the same kind than this enum.
|
KnotType |
BSplineCurve.getKnotSpec()
Gives the type of knot distribution used in defining this spline.
|
KnotType |
BSplineSurface.getKnotSpec()
Gives the type of knot distribution used in defining this spline.
|
static KnotType |
KnotType.valueOf(String code)
Returns the KnotType that matches the given string, or returns a new one if none match it.
|
static KnotType[] |
KnotType.values()
Returns the list of
KnotType s. |
Modifier and Type | Method and Description |
---|---|
BSplineCurve |
GeometryFactory.createBSplineCurve(int degree,
PointArray points,
List<Knot> knots,
KnotType knotSpec)
Constructs a B-spline curve.
|
BSplineSurface |
GeometryFactory.createBSplineSurface(List<PointArray> points,
int[] degree,
List<Knot>[] knots,
KnotType knotSpec)
Constructs a B-spline surface.
|
Copyright © 1996–2021 Geotools. All rights reserved.