Uses of Interface
eu.europa.ec.eurostat.jgiscotools.algo.triangulation.TPoint
-
Packages that use TPoint Package Description eu.europa.ec.eurostat.jgiscotools.algo.triangulation Triangulation. -
-
Uses of TPoint in eu.europa.ec.eurostat.jgiscotools.algo.triangulation
Classes in eu.europa.ec.eurostat.jgiscotools.algo.triangulation that implement TPoint Modifier and Type Class Description class
TPointImpl
Methods in eu.europa.ec.eurostat.jgiscotools.algo.triangulation that return TPoint Modifier and Type Method Description TPoint
TPointFactory. create(org.locationtech.jts.geom.Coordinate c)
TPoint
TPointFactoryImpl. create(org.locationtech.jts.geom.Coordinate c)
TPoint
TSegment. getPt1()
TPoint
TSegmentImpl. getPt1()
TPoint
TTriangle. getPt1()
TPoint
TTriangleImpl. getPt1()
TPoint
TSegment. getPt2()
TPoint
TSegmentImpl. getPt2()
TPoint
TTriangle. getPt2()
TPoint
TTriangleImpl. getPt2()
TPoint
TTriangle. getPt3()
TPoint
TTriangleImpl. getPt3()
Methods in eu.europa.ec.eurostat.jgiscotools.algo.triangulation that return types with arguments of type TPoint Modifier and Type Method Description Collection<TPoint>
Triangulation. getConstraintPoints()
Collection<TPoint>
Triangulation. getPoints()
Methods in eu.europa.ec.eurostat.jgiscotools.algo.triangulation with parameters of type TPoint Modifier and Type Method Description TSegment
TSegmentFactory. create(TPoint p1, TPoint p2)
TSegment
TSegmentFactoryImpl. create(TPoint point1, TPoint point2)
TTriangle
TTriangleFactory. create(TPoint pt1, TPoint pt2, TPoint pt3)
TTriangle
TTriangleFactoryImpl. create(TPoint p1, TPoint p2, TPoint p3)
Constructors in eu.europa.ec.eurostat.jgiscotools.algo.triangulation with parameters of type TPoint Constructor Description TSegmentImpl(TPoint pt1, TPoint pt2)
TTriangleImpl(TPoint pt1, TPoint pt2, TPoint pt3)
Constructor parameters in eu.europa.ec.eurostat.jgiscotools.algo.triangulation with type arguments of type TPoint Constructor Description Triangulation(List<TPoint> conspts, TPointFactory ptF, TSegmentFactory segF, TTriangleFactory triF)
Triangulation(List<TPoint> conspts, Collection<TSegment> conssegs, TPointFactory ptF, TSegmentFactory segF, TTriangleFactory triF)
-