The center point of this circle.
Please use move2DToCoordinates or move2DToPoint to move the center point to a new position.The coordinate type this shape. This property is read only. An Error will be thrown when trying to assign to this property.
The radius of this circle, in meters.
The radius of this circle, in meters.
The spatial reference of this shape. This property is read only. An Error will be thrown when trying to assign to this property.
Determines whether a given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
The point for which containment must be checked. If a 3D point is passed to this function, it will be treated as a 2D point: the z coordinate (height) will be ignored. The reference of this point must be the same reference as this Shape
true
when the given point is contained in this shape
Determines whether the given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
The x coordinate of the point for which containment must be checked
The y coordinate of the point for which containment must be checked
true
when the given point is contained in this shape
Determines whether the given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
The point for which containment must be checked.
true
when the given point is contained in this shape
Indicates whether this shape is equal to another.
the other shape this shape is compared with.
true
if both shapes are equal, false
otherwise.
Translates this shape so that its center ends up at the specified position.
x coordinate value
y coordinate value
Translates this shape so that its center ends up at the specified position.
The location to move too.
Converts the shape to a string. This functionality is for debugging purposes only. Results of toString cannot be used to uniquely identify a shape instance.
Translates the shape over the given vector in 2D space.
The x coordinate of the translation vector
The y coordinate of the translation vector
A Circle interface is a high level interface for a Shape that represents a general circle in the 2D space. Each circle realizes this interface.
A circle cannot be instantiated directly. For more information please refer to CircleByCenterPoint, and CircleBy3Points.