Uses of Interface
org.gvsig.fmap.geom.primitive.Circle

Packages that use Circle
Package
Description
 
  • Uses of Circle in org.gvsig.fmap.geom

    Methods in org.gvsig.fmap.geom that return Circle
    Modifier and Type
    Method
    Description
    static Circle
    GeometryUtils.createCircle(org.gvsig.euclidean.EuclideanLine2D line1, org.gvsig.euclidean.EuclideanLine2D line2, Point point, int subtype)
    Creates a circle from two tangents and one point.
    static Circle
    GeometryUtils.createCircle(Geometry geometry1, Geometry geometry2, double radius, Point firstPoint, Point secondPoint, int subtype)
    Creates a circle from two tangent geometries and the radius.
    static Circle
    GeometryUtils.createCircle(Point center, double radius, int subtype)
    Creates a circle as of center and radius.
    static Circle
    GeometryUtils.createCircle(Point firstPoint, Point secondPoint, Point thirdPoint, int subtype)
    Creates a circle from three points.
    static Circle
    GeometryUtils.createCircle(Point firstPoint, Point secondPoint, Point thirdPoint, Point fourthPoint, Point fifthPoint, int subtype)
    Creates a circle from five points.The first two points are two points on a tangent to the circle.The next two are two points on another tangent to the circle.The last one is a point near the center of the circle.