Class PolygonGraphEdge
- java.lang.Object
-
- org.openjump.core.graph.polygongraph.PolygonGraphEdge
-
public class PolygonGraphEdge extends Object
-
-
Field Summary
Fields Modifier and Type Field Description boolean
boundaryCalculated
int
edgeId
PolygonGraphNode
node1
PolygonGraphNode
node2
-
Constructor Summary
Constructors Constructor Description PolygonGraphEdge(PolygonGraphNode node1, PolygonGraphNode node2)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayList<org.locationtech.jts.geom.Geometry>
getBoundaries()
ArrayList<Feature>
getBoundariesAsFeature()
org.locationtech.jts.geom.LineString
getEdgeAsInterriorPointLineString()
Feature
getEdgeBetweenInterriorPointsAsFeature()
static FeatureSchema
getEdgeFeatureSchema()
boolean
hasNodes(int nodeId1, int nodeId2)
-
-
-
Field Detail
-
edgeId
public int edgeId
-
node1
public PolygonGraphNode node1
-
node2
public PolygonGraphNode node2
-
boundaryCalculated
public boolean boundaryCalculated
-
-
Constructor Detail
-
PolygonGraphEdge
public PolygonGraphEdge(PolygonGraphNode node1, PolygonGraphNode node2)
-
-
Method Detail
-
hasNodes
public boolean hasNodes(int nodeId1, int nodeId2)
-
getEdgeAsInterriorPointLineString
public org.locationtech.jts.geom.LineString getEdgeAsInterriorPointLineString()
-
getEdgeBetweenInterriorPointsAsFeature
public Feature getEdgeBetweenInterriorPointsAsFeature()
-
getEdgeFeatureSchema
public static FeatureSchema getEdgeFeatureSchema()
-
getBoundaries
public ArrayList<org.locationtech.jts.geom.Geometry> getBoundaries()
-
-