AbstractAbstractboundsThe bounds of this shape. This property is to be treated in a read only manner. An error will be thrown when trying to assign to this property. Note that the bounds property is not immutable. Modifying properties of the bounds property may corrupt your data.
AbstractcenterThe center point of this circle.
Please use move2DToCoordinates or move2DToPoint to move the center point to a new position.AbstractcoordinateThe coordinate type this shape. This property is read only. An Error will be thrown when trying to assign to this property.
AbstractfirstThe first point of this circle. This is one of the three points on the circumference.
Please use moveFirstPoint2DToCoordinates or moveFirstPoint2DToPoint to move the point to a new position.AbstractfocusThe focus point of this shape. This property is read only. An error will be thrown when trying to assign to this property. This property contains an object but should be treated with value semantics: changes to the shape will not be reflected in the focusPoint that was retrieved from this Polygon before the modification.
AbstractradiusThe 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.
AbstractsecondThe second point of this circle. This is one of the three points on the circumference.
Please use moveSecondPoint2DToCoordinates or moveSecondPoint2DToPoint to move the point to a new position.AbstractthirdThe third point of this circle. This is one of the three points on the circumference.
Please use moveThirdPoint2DToCoordinates or moveThirdPoint2DToPoint to move the point to a new position.Returns the type of the shape. The returned value is a bitwise combination of ShapeType values, ShapeType.CIRCLE | ShapeType.CIRCLE_BY_3_POINTS
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).
true when the given point is contained in this shape
Please use contains2DPoint instead.
Abstractcontains2DCoordinatesDetermines 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
InvalidReferenceError when a point has another spatial reference
AbstractcopyIndicates whether this shape is equal to another.
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.
InvalidReferenceError when the reference of the Point parameter does not correspond with the reference of this Circle.
AbstractmoveMoves the first point of this circle to the given coordinates
The new x coordinate of the start point
The new y coordinate of the start point
Moves the first point of this circle to the given point *
The new coordinate of the start point
AbstractmoveMoves the second point of this circle to the given coordinates
The new x coordinate of the first intermediate point on this circle
The new y coordinate of the first intermediate point on this circle
Moves the second point of this circle to the given point.
The new coordinate of the first intermediate point on this circle
AbstractmoveMoves the second intermediate point of this circle to the given coordinates.
The new x coordinate of the second intermediate point on this circle
The new y coordinate of the second intermediate point on this circle
Moves the third point of this circle to the given point.
The new x coordinate of the second intermediate point on this circle
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.
Abstracttranslate2DTranslates the shape over the given vector in 2D space.
The x coordinate of the translation vector
The y coordinate of the translation vector
AbstracttranslateTranslates the first point of this circle from its current position over the given translation vector to another location.
x coordinate value
y coordinate value
AbstracttranslateTranslates the second point of this circle from its current position over the given translation vector to another location.
x coordinate value
y coordinate value
AbstracttranslateTranslates the third point of this circle from its current position over the given translation vector to another location.
x coordinate value
y coordinate value
A
CircleBy3Pointsis a Shape that represents a circle defined by three points on its circumference in the 2D space.The
CircleBy3Pointsis defined by:- The first point firstPoint (read-only).
- The second point secondPoint (read-only).
- The third point thirdPoint (read-only).
A `CircleBy3Points` cannot be instantiated directly. Instead, it must be created using the createCircleBy3Points factory method.