Rhino C++ API  8.5
Public Member Functions | List of all members
ON_BrepEdgeArray Class Reference

#include <opennurbs_brep.h>

Inheritance diagram for ON_BrepEdgeArray:
ON_ObjectArray< ON_BrepEdge > ON_ClassArray< ON_BrepEdge >

Public Member Functions

 ON_BrepEdgeArray ()
 
 ~ON_BrepEdgeArray ()
 
bool Read (ON_BinaryArchive &)
 
unsigned int SizeOf () const
 
bool Write (ON_BinaryArchive &) const
 
- Public Member Functions inherited from ON_ObjectArray< ON_BrepEdge >
 ON_ObjectArray ()
 Class ON_ObjectArray<> More...
 
 ON_ObjectArray (const ON_ObjectArray< ON_BrepEdge > &)
 
 ON_ObjectArray (size_t)
 size_t parameter = initial capacity More...
 
 ~ON_ObjectArray ()
 override for struct member deallocation, etc. More...
 
ON__UINT32 DataCRC (ON__UINT32 current_remainder) const
 
bool HeapSort (int(*)(const ON_BrepEdge *, const ON_BrepEdge *))
 
ON_ObjectArray< ON_BrepEdge > & operator= (const ON_ObjectArray< ON_BrepEdge > &)
 
bool QuickSort (int(*)(const ON_BrepEdge *, const ON_BrepEdge *))
 
ON_BrepEdgeRealloc (ON_BrepEdge *, int)
 
- Public Member Functions inherited from ON_ClassArray< ON_BrepEdge >
 ON_ClassArray () ON_NOEXCEPT
 construction //////////////////////////////////////////////////////// More...
 
 ON_ClassArray (const ON_ClassArray< ON_BrepEdge > &)
 Copy constructor. More...
 
 ON_ClassArray (size_t)
 size_t parameter = initial capacity More...
 
virtual ~ON_ClassArray ()
 override for struct member deallocation, etc. More...
 
void Append (const ON_BrepEdge &)
 
void Append (int, const ON_BrepEdge *)
 Append copy of an array T[count]. More...
 
ON_BrepEdgeAppendNew ()
 array operations //////////////////////////////////////////////////// More...
 
ON_BrepEdgeArray ()
 The Array() function return the. More...
 
const ON_BrepEdgeArray () const
 m_a pointer value. More...
 
ON_BrepEdgeAt (int)
 At(index) returns nullptr if index < 0 or index >= count. More...
 
const ON_BrepEdgeAt (int) const
 
ON_BrepEdgeAt (ON__INT64)
 
const ON_BrepEdgeAt (ON__INT64) const
 
ON_BrepEdgeAt (ON__UINT64)
 
const ON_BrepEdgeAt (ON__UINT64) const
 
ON_BrepEdgeAt (unsigned int)
 
const ON_BrepEdgeAt (unsigned int) const
 
int BinarySearch (const ON_BrepEdge *, int(*)(const ON_BrepEdge *, const ON_BrepEdge *)) const
 See Also: ON_CompareIncreasing<T> and ON_CompareDeccreasing<T> More...
 
int BinarySearch (const ON_BrepEdge *, int(*)(const ON_BrepEdge *, const ON_BrepEdge *), int) const
 
int Capacity () const
 capacity of array More...
 
int Count () const
 query /////////////////////////////////////////////////////////////// More...
 
void Destroy ()
 onfree any memory and set count and capacity to zero More...
 
void EmergencyDestroy (void)
 emergency bailout /////////////////////////////////////////////////// More...
 
void Empty ()
 Sets count to 0, leaves capacity untouched. More...
 
ON_BrepEdgeFirst ()
 
const ON_BrepEdgeFirst () const
 returns nullptr if count = 0 More...
 
void Insert (int, const ON_BrepEdge &)
 Insert called with a reference uses operator =. More...
 
int InsertInSortedList (const ON_BrepEdge &, int(*)(const ON_BrepEdge *, const ON_BrepEdge *))
 
int InsertInSortedList (const ON_BrepEdge &, int(*)(const ON_BrepEdge *, const ON_BrepEdge *), int)
 
ON_BrepEdgeKeepArray ()
 
ON_BrepEdgeLast ()
 
const ON_BrepEdgeLast () const
 returns nullptr if count = 0 More...
 
int NewCapacity () const
 
 operator const ON_BrepEdge * () const
 
 operator ON_BrepEdge * ()
 The cast operators return a pointer. More...
 
ON_ClassArray< ON_BrepEdge > & operator= (const ON_ClassArray< ON_BrepEdge > &)
 Assignment operator. More...
 
ON_BrepEdgeoperator[] (int)
 
const ON_BrepEdgeoperator[] (int) const
 
ON_BrepEdgeoperator[] (ON__INT64)
 
const ON_BrepEdgeoperator[] (ON__INT64) const
 
ON_BrepEdgeoperator[] (ON__UINT64)
 
const ON_BrepEdgeoperator[] (ON__UINT64) const
 
ON_BrepEdgeoperator[] (unsigned int)
 
const ON_BrepEdgeoperator[] (unsigned int) const
 
bool Permute (const int *)
 
void Remove ()
 
void Remove (int)
 
ON_BrepEdgeReserve (size_t)
 memory management ///////////////////////////////////////////////// More...
 
void Reverse ()
 reverse order More...
 
int Search (const ON_BrepEdge *, int(*)(const ON_BrepEdge *, const ON_BrepEdge *)) const
 
void SetArray (ON_BrepEdge *)
 
void SetArray (ON_BrepEdge *, int, int)
 
ON_BrepEdgeSetCapacity (size_t)
 
void SetCount (int)
 low level memory management ////////////////////////////////////////// More...
 
void Shrink ()
 remove unused capacity More...
 
unsigned int SizeOfArray () const
 amount of memory in the m_a[] array More...
 
unsigned int SizeOfElement () const
 amount of memory in an m_a[] array element More...
 
bool Sort (ON::sort_algorithm sort_algorithm, int *, int(*)(const ON_BrepEdge *, const ON_BrepEdge *)) const
 
bool Sort (ON::sort_algorithm sort_algorithm, int *, int(*)(const ON_BrepEdge *, const ON_BrepEdge *, void *), void *) const
 
void Swap (int, int)
 swap elements i and j More...
 
unsigned int UnsignedCount () const
 
void Zero ()
 

Additional Inherited Members

- Protected Member Functions inherited from ON_ClassArray< ON_BrepEdge >
void ConstructDefaultElement (ON_BrepEdge *)
 
void DestroyElement (ON_BrepEdge &)
 
void Move (int, int, int)
 implementation ////////////////////////////////////////////////////// More...
 
- Protected Attributes inherited from ON_ClassArray< ON_BrepEdge >
ON_BrepEdgem_a
 pointer to array memory More...
 
int m_capacity
 actual length of m_a[] More...
 
int m_count
 0 <= m_count <= m_capacity More...
 

Constructor & Destructor Documentation

◆ ON_BrepEdgeArray()

ON_BrepEdgeArray::ON_BrepEdgeArray ( )

◆ ~ON_BrepEdgeArray()

ON_BrepEdgeArray::~ON_BrepEdgeArray ( )

Member Function Documentation

◆ Read()

bool ON_BrepEdgeArray::Read ( ON_BinaryArchive )

◆ SizeOf()

unsigned int ON_BrepEdgeArray::SizeOf ( ) const

◆ Write()

bool ON_BrepEdgeArray::Write ( ON_BinaryArchive ) const