|
deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of GeometricPrimitive in org.deegree.geometry |
---|
Methods in org.deegree.geometry that return types with arguments of type GeometricPrimitive | |
---|---|
CompositeGeometry<GeometricPrimitive> |
GeometryFactory.createCompositeGeometry(String id,
CRS crs,
List<GeometricPrimitive> memberPrimitives)
Creates a general CompositeGeometry from a list of primitive geometries. |
Methods in org.deegree.geometry with parameters of type GeometricPrimitive | |
---|---|
Geometry |
SFSProfiler.simplify(GeometricPrimitive geometry)
Simplifies the given GeometricPrimitive . |
Method parameters in org.deegree.geometry with type arguments of type GeometricPrimitive | |
---|---|
CompositeGeometry<GeometricPrimitive> |
GeometryFactory.createCompositeGeometry(String id,
CRS crs,
List<GeometricPrimitive> memberPrimitives)
Creates a general CompositeGeometry from a list of primitive geometries. |
Uses of GeometricPrimitive in org.deegree.geometry.composite |
---|
Classes in org.deegree.geometry.composite with type parameters of type GeometricPrimitive | |
---|---|
interface |
CompositeGeometry<T extends GeometricPrimitive>
A CompositeGeometry is a geometric complex with underlying core geometries that are (as a whole)
isomorphic to a geometry primitive. |
Subinterfaces of GeometricPrimitive in org.deegree.geometry.composite | |
---|---|
interface |
CompositeCurve
A CompositeCurve is a geometry with the same topological properties as a (primitive) Curve . |
interface |
CompositeSolid
CompositeSolid is a geometry type with the same geometric properties as the (primitive) Solid
type. |
interface |
CompositeSurface
CompositeSurface is a geometry type with the same geometric properties as the (primitive)
Surface type. |
Uses of GeometricPrimitive in org.deegree.geometry.io |
---|
Methods in org.deegree.geometry.io with parameters of type GeometricPrimitive | |
---|---|
void |
WKTWriter.writeGeometricPrimitive(GeometricPrimitive geometry,
Writer writer)
Writes a geometric primitive |
Method parameters in org.deegree.geometry.io with type arguments of type GeometricPrimitive | |
---|---|
void |
WKTWriter.writeCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometry,
Writer writer)
Writes the compositeGeometry. |
Uses of GeometricPrimitive in org.deegree.geometry.primitive |
---|
Subinterfaces of GeometricPrimitive in org.deegree.geometry.primitive | |
---|---|
interface |
Curve
Curve instances are 1D-geometries that consist of a number of curve segments. |
interface |
LinearRing
TODO add documentation here |
interface |
LineString
The most common case of a Curve : consist of just one curve segment with linear interpolation between the
control points. |
interface |
OrientableCurve
An OrientableCurve consists of a wrapped base Curve and an additional orientation. |
interface |
OrientableSurface
An OrientableSurface consists of a wrapped base Surface and an additional orientation. |
interface |
Point
0-dimensional primitive. |
interface |
Polygon
A Surface that consists of one single planar patch (a PolygonPatch ). |
interface |
PolyhedralSurface
A Surface that consists only of PolygonPatch patches. |
interface |
Ring
A Ring is a composition of Curve s that forms a closed loop. |
interface |
Solid
Solid instances are 3D-geometries that ... |
interface |
Surface
Surface instances are 2D-geometries that consist of an arbitrary number of surface patches which are not
necessarily planar. |
interface |
Tin
A TriangulatedSurface that uses the Delaunay algorithm or a similar algorithm complemented with consideration
of breaklines, stoplines, and maximum length of triangle sides. |
interface |
TriangulatedSurface
A Surface that consists only of Triangle patches. |
Uses of GeometricPrimitive in org.deegree.geometry.standard.composite |
---|
Classes in org.deegree.geometry.standard.composite that implement GeometricPrimitive | |
---|---|
class |
DefaultCompositeCurve
Default implementation of CompositeCurve . |
class |
DefaultCompositeSolid
Default implementation of CompositeSolid . |
class |
DefaultCompositeSurface
Default implementation of CompositeSurface . |
Methods in org.deegree.geometry.standard.composite that return GeometricPrimitive | |
---|---|
GeometricPrimitive |
DefaultCompositeGeometry.get(int index)
|
GeometricPrimitive |
DefaultCompositeGeometry.remove(int index)
|
GeometricPrimitive |
DefaultCompositeGeometry.set(int index,
GeometricPrimitive element)
|
Methods in org.deegree.geometry.standard.composite that return types with arguments of type GeometricPrimitive | |
---|---|
Iterator<GeometricPrimitive> |
DefaultCompositeGeometry.iterator()
|
ListIterator<GeometricPrimitive> |
DefaultCompositeGeometry.listIterator()
|
ListIterator<GeometricPrimitive> |
DefaultCompositeGeometry.listIterator(int index)
|
List<GeometricPrimitive> |
DefaultCompositeGeometry.subList(int fromIndex,
int toIndex)
|
Methods in org.deegree.geometry.standard.composite with parameters of type GeometricPrimitive | |
---|---|
boolean |
DefaultCompositeGeometry.add(GeometricPrimitive e)
|
void |
DefaultCompositeGeometry.add(int index,
GeometricPrimitive element)
|
GeometricPrimitive |
DefaultCompositeGeometry.set(int index,
GeometricPrimitive element)
|
Method parameters in org.deegree.geometry.standard.composite with type arguments of type GeometricPrimitive | |
---|---|
boolean |
DefaultCompositeGeometry.addAll(Collection<? extends GeometricPrimitive> c)
|
boolean |
DefaultCompositeGeometry.addAll(int index,
Collection<? extends GeometricPrimitive> c)
|
Constructor parameters in org.deegree.geometry.standard.composite with type arguments of type GeometricPrimitive | |
---|---|
DefaultCompositeGeometry(String id,
CRS crs,
PrecisionModel pm,
List<GeometricPrimitive> memberPrimitives)
Creates a new DefaultCompositeGeometry from the given parameters. |
Uses of GeometricPrimitive in org.deegree.geometry.standard.primitive |
---|
Classes in org.deegree.geometry.standard.primitive that implement GeometricPrimitive | |
---|---|
class |
DefaultCurve
Default implementation of Curve . |
class |
DefaultLinearRing
Default implementation of Ring . |
class |
DefaultLineString
Default implementation of LineString . |
class |
DefaultOrientableCurve
Default implementation of OrientableCurve . |
class |
DefaultOrientableSurface
Default implementation of OrientableSurface . |
class |
DefaultPoint
Default implementation of Point . |
class |
DefaultPolygon
Default implementation of Polygon . |
class |
DefaultPolyhedralSurface
Default implementation of PolyhedralSurface . |
class |
DefaultRing
Default implementation of Ring . |
class |
DefaultSolid
Default implementation of Solid . |
class |
DefaultSurface
Default implementation of Surface . |
class |
DefaultTin
Default implementation of Tin . |
class |
DefaultTriangulatedSurface
Default implementation of TriangulatedSurface . |
Uses of GeometricPrimitive in org.deegree.gml.geometry |
---|
Methods in org.deegree.gml.geometry that return GeometricPrimitive | |
---|---|
GeometricPrimitive |
GML3GeometryReader.parseGeometricPrimitive(XMLStreamReaderWrapper xmlStream,
CRS defaultCRS)
Returns the object representation for the given gml:_GeometricPrimitive element event that the
cursor of the associated XMLStreamReader points at. |
GeometricPrimitive |
GML3GeometryReader.parseGeometricPrimitiveProperty(XMLStreamReaderWrapper xmlStream,
CRS defaultCRS)
Returns the object representation of an element with type gml:GeometricPrimitivePropertyType (such
as gml:element ). |
Methods in org.deegree.gml.geometry that return types with arguments of type GeometricPrimitive | |
---|---|
CompositeGeometry<GeometricPrimitive> |
GML3GeometryReader.parseGeometricComplex(XMLStreamReaderWrapper xmlStream,
CRS defaultCRS)
Returns the object representation of a gml:GeometricComplex element. |
Method parameters in org.deegree.gml.geometry with type arguments of type GeometricPrimitive | |
---|---|
void |
GML2GeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
|
void |
GMLGeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
|
void |
GML3GeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
Exporting a composite geometry via the XMLStreamWriter given when the class was constructed |
Uses of GeometricPrimitive in org.deegree.gml.geometry.refs |
---|
Classes in org.deegree.gml.geometry.refs with type parameters of type GeometricPrimitive | |
---|---|
class |
GeometricPrimitiveReference<T extends GeometricPrimitive>
The class TODO add class documentation here. |
Classes in org.deegree.gml.geometry.refs that implement GeometricPrimitive | |
---|---|
class |
CurveReference<T extends Curve>
The class TODO add class documentation here. |
class |
GeometricPrimitiveReference<T extends GeometricPrimitive>
The class TODO add class documentation here. |
class |
LineStringReference
The class TODO add class documentation here. |
class |
PointReference
The class TODO add class documentation here. |
class |
PolygonReference
The class TODO add class documentation here. |
class |
SolidReference<T extends Solid>
The class TODO add class documentation here. |
class |
SurfaceReference<T extends Surface>
The class TODO add class documentation here. |
|
deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official | |||||||||
PREV NEXT | FRAMES NO FRAMES |