Uses of Class
com.irurueta.geometry.Circle

Packages that use Circle
Package
Description
This package contains classes to work with basic geometric entities such as 2D or 3D points, lines, planes, 2D or 3D triangles or polygons, circles, spheres, rotations, transformations etc.
This package contains classes to estimate basic geometric structures
  • Uses of Circle in com.irurueta.geometry

    Methods in com.irurueta.geometry with parameters of type Circle
    Modifier and Type
    Method
    Description
    static double
    Circle.distance(Circle circle, Point2D point)
    Returns distance from provided point to the closest point located in provided circle boundary.
    final void
    Ellipse.setFromCircle(Circle circle)
    Sets parameters of this ellipse from a circle.
    static double
    Circle.signedDistance(Circle circle, Point2D point)
    Returns distance from provided point to the closest point located in provided circle boundary.
    Constructors in com.irurueta.geometry with parameters of type Circle
    Modifier
    Constructor
    Description
     
    Ellipse(Circle circle)
    Constructor.
  • Uses of Circle in com.irurueta.geometry.estimators

    Modifier and Type
    Method
    Description
    abstract Circle
    CircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    LMedSCircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    MSACCircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    PROMedSCircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    PROSACCircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    RANSACCircleRobustEstimator.estimate()
    Estimates a circle using a robust estimator and the best set of 2D points that fit into the locus of the estimated circle found using the robust estimator.
    Methods in com.irurueta.geometry.estimators with parameters of type Circle
    Modifier and Type
    Method
    Description
    protected double
    CircleRobustEstimator.residual(Circle c, Point2D point)
    Computes the residual between a circle and a point.