Uses of Class
com.vividsolutions.jts.geom.GeometryFactory

Packages that use GeometryFactory
com.vividsolutions.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms. 
com.vividsolutions.jts.awt Classes to perform conversions from Java2D shape objects. 
com.vividsolutions.jts.geom Contains the Geometry interface hierarchy and supporting classes. 
com.vividsolutions.jts.geom.util Provides classes that parse and modify Geometry objects. 
com.vividsolutions.jts.geomgraph Contains classes that implement topology graphs. 
com.vividsolutions.jts.io Contains the interfaces for converting JTS objects to and from other formats. 
com.vividsolutions.jts.io.gml2 Classes to read and write the GML2 geometry format. 
com.vividsolutions.jts.linearref Contains classes and interfaces implementing linear referencing on linear geometries 
com.vividsolutions.jts.operation.linemerge Classes to perform line merging. 
com.vividsolutions.jts.operation.overlay Contains classes that perform a topological overlay to compute boolean spatial functions. 
com.vividsolutions.jts.operation.union Classes to perform efficent unioning of collections of geometries. 
com.vividsolutions.jts.shape   
com.vividsolutions.jts.shape.fractal   
com.vividsolutions.jts.shape.random   
com.vividsolutions.jts.triangulate Classes to compute Delaunay triangulations. 
com.vividsolutions.jts.triangulate.quadedge Classes to implement a topological subdivision of quadeges, to support creating triangulations and Voronoi diagrams. 
com.vividsolutions.jts.util Contains support classes for the Java Topology Suite. 
 

Uses of GeometryFactory in com.vividsolutions.jts.algorithm
 

Constructors in com.vividsolutions.jts.algorithm with parameters of type GeometryFactory
ConvexHull(Coordinate[] pts, GeometryFactory geomFactory)
          Create a new convex hull construction for the input Coordinate array.
 

Uses of GeometryFactory in com.vividsolutions.jts.awt
 

Methods in com.vividsolutions.jts.awt with parameters of type GeometryFactory
static Geometry ShapeReader.read(PathIterator pathIt, GeometryFactory geomFact)
          Converts a flat path to a Geometry.
static Geometry ShapeReader.read(Shape shp, double flatness, GeometryFactory geomFact)
          Converts a Shape to a Geometry, flattening it first.
static Geometry FontGlyphReader.read(String text, Font font, double flatness, GeometryFactory geomFact)
          Converts text rendered in the given Font to a Geometry
static Geometry FontGlyphReader.read(String text, Font font, GeometryFactory geomFact)
          Converts text rendered in the given Font to a Geometry using a standard flatness factor.
static Geometry FontGlyphReader.read(String text, String fontName, int pointSize, GeometryFactory geomFact)
          Converts text rendered in the given font and pointsize to a Geometry using a standard flatness factor.
 

Constructors in com.vividsolutions.jts.awt with parameters of type GeometryFactory
ShapeReader(GeometryFactory geometryFactory)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.geom
 

Fields in com.vividsolutions.jts.geom declared as GeometryFactory
protected  GeometryFactory Geometry.factory
          The GeometryFactory used to create this Geometry
 

Methods in com.vividsolutions.jts.geom that return GeometryFactory
 GeometryFactory Geometry.getFactory()
          Gets the factory which contains the context in which this geometry was created.
 

Methods in com.vividsolutions.jts.geom with parameters of type GeometryFactory
 Geometry OctagonalEnvelope.toGeometry(GeometryFactory geomFactory)
           
 LineString LineSegment.toGeometry(GeometryFactory geomFactory)
          Creates a LineString with the same coordinates as this segment
 

Constructors in com.vividsolutions.jts.geom with parameters of type GeometryFactory
Geometry(GeometryFactory factory)
          Creates a new Geometry via the specified GeometryFactory.
GeometryCollection(Geometry[] geometries, GeometryFactory factory)
           
LinearRing(CoordinateSequence points, GeometryFactory factory)
          Constructs a LinearRing with the vertices specifed by the given CoordinateSequence.
LineString(CoordinateSequence points, GeometryFactory factory)
          Constructs a LineString with the given points.
MultiLineString(LineString[] lineStrings, GeometryFactory factory)
           
MultiPoint(Point[] points, GeometryFactory factory)
           
MultiPolygon(Polygon[] polygons, GeometryFactory factory)
           
Point(CoordinateSequence coordinates, GeometryFactory factory)
           
Polygon(LinearRing shell, LinearRing[] holes, GeometryFactory factory)
          Constructs a Polygon with the given exterior boundary and interior boundaries.
 

Uses of GeometryFactory in com.vividsolutions.jts.geom.util
 

Fields in com.vividsolutions.jts.geom.util declared as GeometryFactory
protected  GeometryFactory GeometryTransformer.factory
           
 

Methods in com.vividsolutions.jts.geom.util that return GeometryFactory
static GeometryFactory GeometryCombiner.extractFactory(Collection geoms)
          Extracts the GeometryFactory used by the geometries in a collection
 

Methods in com.vividsolutions.jts.geom.util with parameters of type GeometryFactory
 Geometry GeometryEditor.GeometryEditorOperation.edit(Geometry geometry, GeometryFactory factory)
          Edits a Geometry by returning a new Geometry with a modification.
 Geometry GeometryEditor.NoOpGeometryOperation.edit(Geometry geometry, GeometryFactory factory)
           
 Geometry GeometryEditor.CoordinateOperation.edit(Geometry geometry, GeometryFactory factory)
           
 Geometry GeometryEditor.CoordinateSequenceOperation.edit(Geometry geometry, GeometryFactory factory)
           
 

Constructors in com.vividsolutions.jts.geom.util with parameters of type GeometryFactory
GeometryEditor(GeometryFactory factory)
          Creates a new GeometryEditor object which will create edited Geometrys with the given GeometryFactory.
SineStarFactory(GeometryFactory geomFact)
          Creates a factory which will create sine stars using the given GeometryFactory.
 

Uses of GeometryFactory in com.vividsolutions.jts.geomgraph
 

Fields in com.vividsolutions.jts.geomgraph declared as GeometryFactory
protected  GeometryFactory EdgeRing.geometryFactory
           
 

Methods in com.vividsolutions.jts.geomgraph with parameters of type GeometryFactory
 Polygon EdgeRing.toPolygon(GeometryFactory geometryFactory)
           
 

Constructors in com.vividsolutions.jts.geomgraph with parameters of type GeometryFactory
EdgeRing(DirectedEdge start, GeometryFactory geometryFactory)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.io
 

Constructors in com.vividsolutions.jts.io with parameters of type GeometryFactory
WKBReader(GeometryFactory geometryFactory)
           
WKTReader(GeometryFactory geometryFactory)
          Creates a reader that creates objects using the given GeometryFactory.
 

Uses of GeometryFactory in com.vividsolutions.jts.io.gml2
 

Methods in com.vividsolutions.jts.io.gml2 with parameters of type GeometryFactory
 Geometry GMLReader.read(Reader reader, GeometryFactory geometryFactory)
          Reads a GML2 Geometry from a Reader into a single Geometry If a collection of Geometries is found, a GeometryCollection is returned.
 Geometry GMLReader.read(String gml, GeometryFactory geometryFactory)
          Reads a GML2 Geometry from a String into a single Geometry If a collection of geometries is found, a GeometryCollection is returned.
 

Constructors in com.vividsolutions.jts.io.gml2 with parameters of type GeometryFactory
GMLHandler(GeometryFactory gf, ErrorHandler delegate)
          Creates a new handler.
 

Uses of GeometryFactory in com.vividsolutions.jts.linearref
 

Constructors in com.vividsolutions.jts.linearref with parameters of type GeometryFactory
LinearGeometryBuilder(GeometryFactory geomFact)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.operation.linemerge
 

Constructors in com.vividsolutions.jts.operation.linemerge with parameters of type GeometryFactory
EdgeString(GeometryFactory factory)
          Constructs an EdgeString with the given factory used to convert this EdgeString to a LineString
 

Uses of GeometryFactory in com.vividsolutions.jts.operation.overlay
 

Methods in com.vividsolutions.jts.operation.overlay with parameters of type GeometryFactory
static Geometry OverlayOp.createEmptyResult(int opCode, Geometry a, Geometry b, GeometryFactory geomFact)
          Creates an empty result geometry of the appropriate dimension, based on the dimensions of the inputs.
 

Constructors in com.vividsolutions.jts.operation.overlay with parameters of type GeometryFactory
LineBuilder(OverlayOp op, GeometryFactory geometryFactory, PointLocator ptLocator)
           
MaximalEdgeRing(DirectedEdge start, GeometryFactory geometryFactory)
           
MinimalEdgeRing(DirectedEdge start, GeometryFactory geometryFactory)
           
PointBuilder(OverlayOp op, GeometryFactory geometryFactory, PointLocator ptLocator)
           
PolygonBuilder(GeometryFactory geometryFactory)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.operation.union
 

Methods in com.vividsolutions.jts.operation.union with parameters of type GeometryFactory
static Geometry UnaryUnionOp.union(Collection geoms, GeometryFactory geomFact)
           
 

Constructors in com.vividsolutions.jts.operation.union with parameters of type GeometryFactory
UnaryUnionOp(Collection geoms, GeometryFactory geomFact)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.shape
 

Fields in com.vividsolutions.jts.shape declared as GeometryFactory
protected  GeometryFactory GeometricShapeBuilder.geomFactory
           
 

Constructors in com.vividsolutions.jts.shape with parameters of type GeometryFactory
GeometricShapeBuilder(GeometryFactory geomFactory)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.shape.fractal
 

Constructors in com.vividsolutions.jts.shape.fractal with parameters of type GeometryFactory
KochSnowflakeBuilder(GeometryFactory geomFactory)
           
SierpinskiCarpetBuilder(GeometryFactory geomFactory)
           
 

Uses of GeometryFactory in com.vividsolutions.jts.shape.random
 

Constructors in com.vividsolutions.jts.shape.random with parameters of type GeometryFactory
RandomPointsBuilder(GeometryFactory geomFact)
          Create a shape factory which will create shapes using the given GeometryFactory.
RandomPointsInGridBuilder(GeometryFactory geomFact)
          Create a builder which will create shapes using the given GeometryFactory.
 

Uses of GeometryFactory in com.vividsolutions.jts.triangulate
 

Methods in com.vividsolutions.jts.triangulate with parameters of type GeometryFactory
 Geometry VoronoiDiagramBuilder.getDiagram(GeometryFactory geomFact)
          Gets the faces of the computed diagram as a GeometryCollection of Polygons, clipped as specified.
 Geometry DelaunayTriangulationBuilder.getEdges(GeometryFactory geomFact)
          Gets the edges of the computed triangulation as a MultiLineString.
 Geometry ConformingDelaunayTriangulationBuilder.getEdges(GeometryFactory geomFact)
          Gets the edges of the computed triangulation as a MultiLineString.
 Geometry DelaunayTriangulationBuilder.getTriangles(GeometryFactory geomFact)
          Gets the faces of the computed triangulation as a GeometryCollection of Polygon.
 Geometry ConformingDelaunayTriangulationBuilder.getTriangles(GeometryFactory geomFact)
          Gets the faces of the computed triangulation as a GeometryCollection of Polygon.
 

Uses of GeometryFactory in com.vividsolutions.jts.triangulate.quadedge
 

Methods in com.vividsolutions.jts.triangulate.quadedge with parameters of type GeometryFactory
 Geometry QuadEdgeSubdivision.getEdges(GeometryFactory geomFact)
          Gets the geometry for the edges in the subdivision as a MultiLineString containing 2-point lines.
 Polygon QuadEdgeTriangle.getGeometry(GeometryFactory fact)
           
 Geometry QuadEdgeSubdivision.getTriangles(GeometryFactory geomFact)
          Gets the geometry for the triangles in a triangulated subdivision as a GeometryCollection of triangular Polygons.
 Polygon QuadEdgeSubdivision.getVoronoiCellPolygon(QuadEdge qe, GeometryFactory geomFact)
          Gets the Voronoi cell around a site specified by the origin of a QuadEdge.
 List QuadEdgeSubdivision.getVoronoiCellPolygons(GeometryFactory geomFact)
          Gets a List of Polygons for the Voronoi cells of this triangulation.
 Geometry QuadEdgeSubdivision.getVoronoiDiagram(GeometryFactory geomFact)
          Gets the cells in the Voronoi diagram for this triangulation.
 

Uses of GeometryFactory in com.vividsolutions.jts.util
 

Fields in com.vividsolutions.jts.util declared as GeometryFactory
protected  GeometryFactory GeometricShapeFactory.geomFact
           
 

Constructors in com.vividsolutions.jts.util with parameters of type GeometryFactory
GeometricShapeFactory(GeometryFactory geomFact)
          Create a shape factory which will create shapes using the given GeometryFactory.
 



Copyright © 2012. All Rights Reserved.