Package com.flir.thermalsdk.image
Class Circle
java.lang.Object
com.flir.thermalsdk.image.Circle
Represents a set of tree integers that represent the center point and a radius of a circle.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
x
public final int xThe x-coordinate of the center of the Circle structure. -
y
public final int yThe y-coordinate of the center of the Circle structure. -
radius
public final int radiusThe radius of the Circle structure.
-
-
Constructor Details
-
Circle
public Circle(int x, int y, int radius) Create a Circle.- Parameters:
x
- The x-coordinate of the center of the Circle structure.y
- The y-coordinate of the center of the Circle structure.radius
- The radius of the Circle structure.- Throws:
IllegalArgumentException
- if any of the values would create an invalid circle, i.e. negative radius
-
-
Method Details