Package com.luciad.shape
Interface ILcdCircle
- All Superinterfaces:
Cloneable
,ILcdBounded
,ILcdCloneable
,ILcdShape
,Serializable
- All Known Subinterfaces:
ILcd2DEditableCircle
,ILcd2DEditableCircleBy3Points
,ILcd3DEditableDome
,ILcd3DEditableSphere
,ILcdCircleBy3Points
,ILcdDome
,ILcdSphere
- All Known Implementing Classes:
TLcdCGMCircle
,TLcdDWGCircle
,TLcdGML31Circle
,TLcdGML31CircleByCenterPoint
,TLcdGML32Circle
,TLcdGML32CircleByCenterPoint
,TLcdLonLatCircle
,TLcdLonLatCircleBy3Points
,TLcdLonLatHeightDome
,TLcdLonLatHeightSphere
,TLcdNVG15Circle
,TLcdNVG20CircularRing
,TLcdXYCircle
,TLcdXYCircleBy3Points
An
ILcdCircle
is an ILcdShape
that represents a circle in the 2D space.
It has a center and a radius.
The parameters of the circle can only be read, not modified.
-
Method Summary
Methods inherited from interface com.luciad.shape.ILcdBounded
getBounds
Methods inherited from interface com.luciad.util.ILcdCloneable
clone
Methods inherited from interface com.luciad.shape.ILcdShape
contains2D, contains2D, contains3D, contains3D, getFocusPoint
-
Method Details
-
getCenter
ILcdPoint getCenter()Returns the center of thisILcdCircle
.- Returns:
- the center of this
ILcdCircle
.
-
getRadius
double getRadius()Returns the radius of thisILcdCircle
.- Returns:
- the radius of this
ILcdCircle
.
-