Package net.sourceforge.plantuml.geom
Class Kingdom
- java.lang.Object
-
- net.sourceforge.plantuml.geom.Kingdom
-
public class Kingdom extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Kingdom()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Polyline
addDirectLink(Point2DInt start, Point2DInt end)
Polyline
addPath(Point2DInt start, Point2DInt end)
Deprecated.void
addSegment(LineSegmentInt seg)
boolean
arePointsConnectable(Point2DInt p1, Point2DInt p2)
boolean
equals(java.lang.Object obj)
java.util.Set<ClosedArea>
getAllClosedArea()
Polyline
getPath(Pointable start, Pointable end)
protected java.util.Set<LineSegmentInt>
getSegments()
Singularity
getSingularity(Point2DInt center)
int
hashCode()
boolean
isConnectable(Neighborhood n1, Neighborhood n2)
boolean
isConnectable(Point2DInt p, Neighborhood n)
boolean
isSimpleSegmentPossible(Point2DInt start, Point2DInt end)
protected boolean
knowThisPoint(Point2DInt p)
java.lang.String
toString()
-
-
-
Method Detail
-
getAllClosedArea
public java.util.Set<ClosedArea> getAllClosedArea()
-
arePointsConnectable
public boolean arePointsConnectable(Point2DInt p1, Point2DInt p2)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public final boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
knowThisPoint
protected boolean knowThisPoint(Point2DInt p)
-
addSegment
public void addSegment(LineSegmentInt seg)
-
getSegments
protected final java.util.Set<LineSegmentInt> getSegments()
-
addPath
@Deprecated public Polyline addPath(Point2DInt start, Point2DInt end)
Deprecated.
-
addDirectLink
public Polyline addDirectLink(Point2DInt start, Point2DInt end)
-
isSimpleSegmentPossible
public boolean isSimpleSegmentPossible(Point2DInt start, Point2DInt end)
-
isConnectable
public boolean isConnectable(Point2DInt p, Neighborhood n)
-
isConnectable
public boolean isConnectable(Neighborhood n1, Neighborhood n2)
-
getSingularity
public Singularity getSingularity(Point2DInt center)
-
-