Package com.luciad.shape.shape2D
Interface ILcd2DEditablePolygon
- All Superinterfaces:
Cloneable
,ILcd2DEditablePointList
,ILcd2DEditableShape
,ILcdBounded
,ILcdCloneable
,ILcdPointList
,ILcdPolygon
,ILcdShape
,Serializable
- All Known Implementing Classes:
TLcdCGMPolygon
,TLcdDGNFloatShape2D
,TLcdDGNShape2D
,TLcdDWGFace3D
,TLcdDWGPolyline2D
,TLcdDWGSolid
,TLcdLonLatFloatPolygon
,TLcdLonLatFloatPolygonCache
,TLcdLonLatHeightMPolygon
,TLcdLonLatHeightPolygon
,TLcdLonLatMPolygon
,TLcdLonLatPolygon
,TLcdLonLatRhumbPolygon
,TLcdMeasureXYPolygon
,TLcdMeasureXYZPolygon
,TLcdNVG15Polygon
,TLcdNVG20LinearRing
,TLcdS57Face
,TLcdXYFloatPolygon
,TLcdXYFloatPolygonCache
,TLcdXYMPolygon
,TLcdXYPolygon
,TLcdXYZMPolygon
,TLcdXYZPolygon
public interface ILcd2DEditablePolygon
extends ILcdPolygon, ILcd2DEditableShape, ILcd2DEditablePointList
An
ILcd2DEditablePolygon
object is an ILcdPolygon
that can be changed in two dimensions.
Its vertices can be accessed through the ILcd2DEditablePointList
interface.-
Field Summary
Fields inherited from interface com.luciad.shape.ILcdPolygon
CLOCKWISE, COUNTERCLOCKWISE, INVALID_ORIENTATION
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setOrientation
(int aOrientation) Sets the orientation of thisILcd2DEditablePolygon
.Methods inherited from interface com.luciad.shape.shape2D.ILcd2DEditablePointList
append2DPoint, insert2DPoint, move2DPoint, removePointAt, translate2D, translate2DPoint
Methods inherited from interface com.luciad.shape.shape2D.ILcd2DEditableShape
move2D, move2D, translate2D
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.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZ
Methods inherited from interface com.luciad.shape.ILcdPolygon
getOrientation
Methods inherited from interface com.luciad.shape.ILcdShape
contains2D, contains2D, contains3D, contains3D, getFocusPoint
-
Method Details
-
setOrientation
void setOrientation(int aOrientation) Sets the orientation of thisILcd2DEditablePolygon
.- Parameters:
aOrientation
-ILcd2DEditablePolygon.CLOCKWISE
,ILcd2DEditablePolygon.COUNTERCLOCKWISE
orILcd2DEditablePolygon.INVALID_ORIENTATION
.
-