Package com.luciad.geometries
Class CircleBy3Points
java.lang.Object
com.luciad.geometries.Geometry
com.luciad.geometries.Curve
com.luciad.geometries.Ring
com.luciad.geometries.CircleBy3Points
- All Implemented Interfaces:
AutoCloseable
A circle that is defined by a start point, a first intermediate point, and a second intermediate point on the circle.
A circle by-3-points where the three points coincide represents a circle with these points as its center and a radius of 0.
A circle by-3-points where 2 out of 3 points coincide represents a circle with its center located in the middle between the 2 coinciding points and the other point.
- See Also:
-
Method Summary
Methods inherited from class com.luciad.geometries.Curve
computePoint, getLength2D
Methods inherited from class com.luciad.geometries.Geometry
getBounds, getReference
-
Method Details
-
finalize
protected void finalize() -
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Overrides:
close
in classRing
-
getStartPoint
Returns the start point of this circle-by-3-points.- Returns:
- the start point of this circle-by-3-points.
-
getFirstIntermediatePoint
Returns the first intermediate point of this circle-by-3-points.- Returns:
- the first intermediate point of this circle-by-3-points.
-
getSecondIntermediatePoint
Returns the second intermediate point of this circle-by-3-points.- Returns:
- the second intermediate point of this circle-by-3-points.
-