Defines an array of 2D nodes of single/double precision configurable at construction time.
More...
|
| Poly_ArrayOfUVNodes () |
| Empty constructor of double-precision array. More...
|
|
| Poly_ArrayOfUVNodes (Standard_Integer theLength) |
| Constructor of double-precision array. More...
|
|
| Poly_ArrayOfUVNodes (const Poly_ArrayOfUVNodes &theOther) |
| Copy constructor. More...
|
|
| Poly_ArrayOfUVNodes (const gp_Pnt2d &theBegin, Standard_Integer theLength) |
| Constructor wrapping pre-allocated C-array of values without copying them. More...
|
|
| Poly_ArrayOfUVNodes (const gp_Vec2f &theBegin, Standard_Integer theLength) |
| Constructor wrapping pre-allocated C-array of values without copying them. More...
|
|
| ~Poly_ArrayOfUVNodes () |
| Destructor. More...
|
|
bool | IsDoublePrecision () const |
| Returns TRUE if array defines nodes with double precision. More...
|
|
void | SetDoublePrecision (bool theIsDouble) |
| Sets if array should define nodes with double or single precision. Raises exception if array was already allocated. More...
|
|
Poly_ArrayOfUVNodes & | Assign (const Poly_ArrayOfUVNodes &theOther) |
| Copies data of theOther array to this. The arrays should have the same length, but may have different precision / number of components (data conversion will be applied in the latter case). More...
|
|
Poly_ArrayOfUVNodes & | Move (Poly_ArrayOfUVNodes &theOther) |
| Move assignment. More...
|
|
Poly_ArrayOfUVNodes & | operator= (const Poly_ArrayOfUVNodes &theOther) |
| Assignment operator;. More...
|
|
| Poly_ArrayOfUVNodes (Poly_ArrayOfUVNodes &&theOther) |
| Move constructor. More...
|
|
Poly_ArrayOfUVNodes & | operator= (Poly_ArrayOfUVNodes &&theOther) |
| Move assignment operator;. More...
|
|
gp_Pnt2d | Value (Standard_Integer theIndex) const |
| A generalized accessor to point. More...
|
|
void | SetValue (Standard_Integer theIndex, const gp_Pnt2d &theValue) |
| A generalized setter for point. More...
|
|
gp_Pnt2d | operator[] (Standard_Integer theIndex) const |
| operator[] - alias to Value More...
|
|
| NCollection_AliasedArray (Standard_Integer theStride) |
| Empty constructor. More...
|
|
| NCollection_AliasedArray (Standard_Integer theStride, Standard_Integer theLength) |
| Constructor. More...
|
|
| NCollection_AliasedArray (const NCollection_AliasedArray &theOther) |
| Copy constructor. More...
|
|
| NCollection_AliasedArray (NCollection_AliasedArray &&theOther) |
| Move constructor. More...
|
|
template<typename Type_t > |
| NCollection_AliasedArray (const Type_t &theBegin, Standard_Integer theLength) |
| Constructor wrapping pre-allocated C-array of values without copying them. More...
|
|
Standard_Integer | Stride () const |
| Returns an element size in bytes. More...
|
|
Standard_Integer | Size () const |
| Size query. More...
|
|
Standard_Integer | Length () const |
| Length query (the same as Size()) More...
|
|
Standard_Boolean | IsEmpty () const |
| Return TRUE if array has zero length. More...
|
|
Standard_Integer | Lower () const |
| Lower bound. More...
|
|
Standard_Integer | Upper () const |
| Upper bound. More...
|
|
Standard_Boolean | IsDeletable () const |
| myDeletable flag More...
|
|
Standard_Boolean | IsAllocated () const |
| IsAllocated flag - for naming compatibility. More...
|
|
Standard_Size | SizeBytes () const |
| Return buffer size in bytes. More...
|
|
NCollection_AliasedArray & | Assign (const NCollection_AliasedArray &theOther) |
| Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown. More...
|
|
NCollection_AliasedArray & | Move (NCollection_AliasedArray &theOther) |
| Move assignment. This array will borrow all the data from theOther. The moved object will keep pointer to the memory buffer and range, but it will not free the buffer on destruction. More...
|
|
NCollection_AliasedArray & | operator= (const NCollection_AliasedArray &theOther) |
| Assignment operator;. More...
|
|
NCollection_AliasedArray & | operator= (NCollection_AliasedArray &&theOther) |
| Move assignment operator;. More...
|
|
void | Resize (Standard_Integer theLength, Standard_Boolean theToCopyData) |
| Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE. More...
|
|
| ~NCollection_AliasedArray () |
| Destructor - releases the memory. More...
|
|
const Standard_Byte * | value (Standard_Integer theIndex) const |
| Access raw bytes of specified element. More...
|
|
Standard_Byte * | changeValue (Standard_Integer theIndex) |
| Access raw bytes of specified element. More...
|
|
template<typename Type_t > |
void | Init (const Type_t &theValue) |
| Initialize the items with theValue. More...
|
|
template<typename Type_t > |
const Type_t & | Value (Standard_Integer theIndex) const |
| Access element with specified position and type. This method requires size of a type matching stride value. More...
|
|
template<typename Type_t > |
void | Value (Standard_Integer theIndex, Type_t &theValue) const |
| Access element with specified position and type. This method requires size of a type matching stride value. More...
|
|
template<typename Type_t > |
Type_t & | ChangeValue (Standard_Integer theIndex) |
| Access element with specified position and type. This method requires size of a type matching stride value. More...
|
|
template<typename Type_t > |
const Type_t & | Value2 (Standard_Integer theIndex) const |
| Access element with specified position and type. This method allows wrapping element into smaller type (e.g. to alias 2-components within 3-component vector). More...
|
|
template<typename Type_t > |
void | Value2 (Standard_Integer theIndex, Type_t &theValue) const |
| Access element with specified position and type. This method allows wrapping element into smaller type (e.g. to alias 2-components within 3-component vector). More...
|
|
template<typename Type_t > |
Type_t & | ChangeValue2 (Standard_Integer theIndex) |
| Access element with specified position and type. This method allows wrapping element into smaller type (e.g. to alias 2-components within 3-component vector). More...
|
|
template<typename Type_t > |
const Type_t & | First () const |
| Return first element. More...
|
|
template<typename Type_t > |
Type_t & | ChangeFirst () |
| Return first element. More...
|
|
template<typename Type_t > |
const Type_t & | Last () const |
| Return last element. More...
|
|
template<typename Type_t > |
Type_t & | ChangeLast () |
| Return last element. More...
|
|
Defines an array of 2D nodes of single/double precision configurable at construction time.