Package com.luciad.shape.shape2D
Class TLcd2DEditablePointListXYFloatArray
java.lang.Object
com.luciad.shape.shape2D.TLcd2DEditablePointListXYFloatArray
- All Implemented Interfaces:
ILcdPointList,ILcd2DEditablePointList,ILcdCloneable,Serializable,Cloneable
public class TLcd2DEditablePointListXYFloatArray
extends Object
implements ILcd2DEditablePointList, ILcdCloneable
This class provides an implementation of
ILcd2DEditablePointList.
This implementation uses an array of the right size to store the coordinates
of the points, which is memory efficient, but inefficient for adding and
removing points.
This class is thread-safe for read-only access.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new emptyTLcd2DEditablePointList.TLcd2DEditablePointListXYFloatArray(float[] aPoints, boolean aDeepCopy) Constructs a newTLcd2DEditablePointListthat is a copy of the givenILcd2DEditablePointList.TLcd2DEditablePointListXYFloatArray(TLcd2DEditablePointListXYFloatArray a2DEditablePointListXYFloatArray, boolean aDeepCopy) -
Method Summary
Modifier and TypeMethodDescriptionclone()MakesObject.clone()public.booleanfinal ILcdPointgetPoint(int aIndex) Returns theILcdPointat a given index.final intReturns the number ofILcdPointobjects in the list.voidinsert2DPoint(int aIndex, double aX, double aY) Inserts a point at the given index into thisILcd2DEditablePointList.voidinsert2DPoint(int aIndex, ILcd2DEditablePoint a2DEditablePoint) voidmove2DPoint(int aIndex, double aX, double aY) Moves the specified point of thisILcd2DEditablePointListto the given point in the 2D space.voidremovePointAt(int aIndex) Removes the point at the given index from thisILcd2DEditablePointList.voidtranslate2D(double aDeltaX, double aDeltaY) Translates all the points of thisILcd2DEditablePointListfrom their current positions over the given translation vector in the 2D space.voidtranslate2DPoint(int aIndex, double aDeltaX, double aDeltaY) Translates the specified point of thisILcd2DEditablePointListfrom its current position over the given translation vector in the 2D space.Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.luciad.shape.shape2D.ILcd2DEditablePointList
append2DPointMethods inherited from interface com.luciad.shape.ILcdPointList
getPointSFCT, getX, getY, getZ
-
Constructor Details
-
TLcd2DEditablePointListXYFloatArray
public TLcd2DEditablePointListXYFloatArray()Constructs a new emptyTLcd2DEditablePointList. -
TLcd2DEditablePointListXYFloatArray
public TLcd2DEditablePointListXYFloatArray(float[] aPoints, boolean aDeepCopy) Constructs a newTLcd2DEditablePointListthat is a copy of the givenILcd2DEditablePointList.- Parameters:
aPoints- an array of x/y coordinates. Then'th point is specified by the valuesaPoints[2n](the x) andaPoints[2n+1](the y).aDeepCopy- a boolean indicating whether the individual points in the list should be cloned or just referenced.
-
TLcd2DEditablePointListXYFloatArray
public TLcd2DEditablePointListXYFloatArray(TLcd2DEditablePointListXYFloatArray a2DEditablePointListXYFloatArray, boolean aDeepCopy)
-
-
Method Details
-
getPointCount
public final int getPointCount()Description copied from interface:ILcdPointListReturns the number ofILcdPointobjects in the list.- Specified by:
getPointCountin interfaceILcdPointList- Returns:
- the number of
ILcdPointobjects in the list.
-
getPoint
Description copied from interface:ILcdPointListReturns theILcdPointat a given index.- Specified by:
getPointin interfaceILcdPointList- Parameters:
aIndex- a valid index in the list ofILcdPointobjects.- Returns:
- the
ILcdPointat the given index.
-
translate2D
public void translate2D(double aDeltaX, double aDeltaY) Description copied from interface:ILcd2DEditablePointListTranslates all the points of thisILcd2DEditablePointListfrom their current positions over the given translation vector in the 2D space. Only the first two dimensions of the points are considered. The third dimension is left unchanged.- Specified by:
translate2Din interfaceILcd2DEditablePointList- Parameters:
aDeltaX- the x coordinate of the translation vector.aDeltaY- the y coordinate of the translation vector.
-
move2DPoint
public void move2DPoint(int aIndex, double aX, double aY) Description copied from interface:ILcd2DEditablePointListMoves the specified point of thisILcd2DEditablePointListto the given point in the 2D space. Only the first two dimensions of theILcdShapeare considered. The third dimension is left unchanged.- Specified by:
move2DPointin interfaceILcd2DEditablePointList- Parameters:
aIndex- a valid index in the list of points.aX- the x coordinate of the point.aY- the y coordinate of the point.
-
translate2DPoint
public void translate2DPoint(int aIndex, double aDeltaX, double aDeltaY) Description copied from interface:ILcd2DEditablePointListTranslates the specified point of thisILcd2DEditablePointListfrom its current position over the given translation vector in the 2D space. Only the first two dimensions of the points are considered. The third dimension is left unchanged.- Specified by:
translate2DPointin interfaceILcd2DEditablePointList- Parameters:
aDeltaX- the x coordinate of the translation vector.aDeltaY- the y coordinate of the translation vector.
-
insert2DPoint
-
insert2DPoint
public void insert2DPoint(int aIndex, double aX, double aY) Description copied from interface:ILcd2DEditablePointListInserts a point at the given index into thisILcd2DEditablePointList.- Specified by:
insert2DPointin interfaceILcd2DEditablePointList- Parameters:
aIndex- a valid new index in the list of points.aX- the x coordinate of the new point.aY- the y coordinate of the new point.
-
removePointAt
public void removePointAt(int aIndex) Description copied from interface:ILcd2DEditablePointListRemoves the point at the given index from thisILcd2DEditablePointList.- Specified by:
removePointAtin interfaceILcd2DEditablePointList- Parameters:
aIndex- a valid index in the list ofILcdPointobjects.
-
equals
-
clone
Description copied from interface:ILcdCloneableMakes
When for example extending fromObject.clone()public.java.lang.Object, it can be implemented like this:public Object clone() { try { return super.clone(); } catch ( CloneNotSupportedException e ) { // Cannot happen: extends from Object and implements Cloneable (see also Object.clone) throw new RuntimeException( e ); } }- Specified by:
clonein interfaceILcdCloneable- Overrides:
clonein classObject- See Also:
-