The center point of the circle defining the circular arc. This field is read-only.
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 end point of the circular arc. This is the point that is defined by the radius of the arc and the arc's angle.
The radius of the circle defining the circular arc.
The radius of the circle defining the circular arc.
The spatial reference of this shape. This property is read only. An Error will be thrown when trying to assign to this property.
The start angle. It is defined as an azimuth: in degrees, positive clockwise, starting up/north.
The start angle. It is defined as an azimuth: in degrees, positive clockwise, starting up/north.
The start point of the circular arc. This is the point that is defined by the radius of the arc and the start angle of the arc.
The angle over which the arc extends. It is defined in degrees, positive clockwise.
The angle over which the arc extends. It is defined in degrees, positive clockwise.
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 point ends up at the specified position.
x coordinate value
y coordinate value
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 Circular arc is a high level interface for a Shape that represents a general circular arc in the 2D space. Each circular arc realizes this interface.
A circular arc cannot be instantiated directly. For more information please refer to CircularArcByCenterPoint, CircularArcBy3Points, and CircularArcByBulge.