Package boofcv.struct.packed
Class PackedBigArrayPoint2D_F64
java.lang.Object
boofcv.struct.packed.PackedBigArrayPoint2D_F64
- All Implemented Interfaces:
PackedArray<Point2D_F64>
,LArrayAccessor<Point2D_F64>
Packed array of
Point2D_F64
. Internally the point is stored in an interleaved format.-
Field Summary
-
Constructor Summary
ConstructorDescriptionConstructor where the default is used for all parameters.PackedBigArrayPoint2D_F64
(int reservedPoints) Constructor where the initial number of points is specified and everything else is defaultPackedBigArrayPoint2D_F64
(int reservedPoints, int blockSize, BigDogGrowth growth) Constructor which allows access to all array parameters -
Method Summary
Modifier and TypeMethodDescriptionvoid
append
(double x, double y) void
append
(Point2D_F64 element) Appends a copy to the end of the arrayvoid
copy
(Point2D_F64 src, Point2D_F64 dst) void
forIdx
(int idx0, int idx1, BoofLambdas.ProcessIndex<Point2D_F64> op) Passes in each object and index within the specified range.void
getCopy
(int index, Point2D_F64 dst) getTemp
(int index) void
reserve
(int numPoints) Ensure there is enough space to store 'numElements' before the internal array needs to grow.void
reset()
Resets the array's size to be zerovoid
set
(int index, Point2D_F64 element) Sets an element's valueint
size()
-
Field Details
-
temp
-
numPoints
protected int numPoints
-
-
Constructor Details
-
PackedBigArrayPoint2D_F64
public PackedBigArrayPoint2D_F64()Constructor where the default is used for all parameters. -
PackedBigArrayPoint2D_F64
public PackedBigArrayPoint2D_F64(int reservedPoints) Constructor where the initial number of points is specified and everything else is default -
PackedBigArrayPoint2D_F64
Constructor which allows access to all array parameters- Parameters:
reservedPoints
- Reserve space to store this number of points initiallyblockSize
- A single block will be able to store this number of pointsgrowth
- Growth strategy to use
-
-
Method Details
-
reset
public void reset()Description copied from interface:PackedArray
Resets the array's size to be zero- Specified by:
reset
in interfacePackedArray<Point2D_F64>
-
reserve
public void reserve(int numPoints) Description copied from interface:PackedArray
Ensure there is enough space to store 'numElements' before the internal array needs to grow. Does not change the size- Specified by:
reserve
in interfacePackedArray<Point2D_F64>
- Parameters:
numPoints
- Minimum number of elements allocated to the array
-
append
public void append(double x, double y) -
append
Description copied from interface:PackedArray
Appends a copy to the end of the array- Specified by:
append
in interfacePackedArray<Point2D_F64>
- Parameters:
element
- (Input) The element which is copied then added
-
set
Description copied from interface:PackedArray
Sets an element's value- Specified by:
set
in interfacePackedArray<Point2D_F64>
-
getTemp
- Specified by:
getTemp
in interfaceLArrayAccessor<Point2D_F64>
-
getCopy
- Specified by:
getCopy
in interfaceLArrayAccessor<Point2D_F64>
-
copy
- Specified by:
copy
in interfaceLArrayAccessor<Point2D_F64>
-
size
public int size()- Specified by:
size
in interfaceLArrayAccessor<Point2D_F64>
-
getElementType
- Specified by:
getElementType
in interfaceLArrayAccessor<Point2D_F64>
-
forIdx
Description copied from interface:PackedArray
Passes in each object and index within the specified range. Modifications to the passed in objcet will be saved in the array.- Specified by:
forIdx
in interfacePackedArray<Point2D_F64>
- Parameters:
idx0
- Initial index. Inclusiveidx1
- Last index, Exclusiveop
- The operation to process each element
-