Public Member Functions | |
| FanRecord | __getitem__ (self, VertId i) |
| FanRecord | __getitem__ (self, VertId i) |
| None | __init__ (self) |
| None | __init__ (self, int size) |
| None | __init__ (self, int size, FanRecord val) |
| None | __init__ (self, std_vector_FanRecord vec) |
| None | __init__ (self, Vector_FanRecord_VertId arg0) |
| typing.Iterator[FanRecord] | __iter__ (self) |
| None | __setitem__ (self, VertId arg0, FanRecord arg1) |
| FanRecord | autoResizeAt (self, VertId i) |
| None | autoResizeSet (self, VertId pos, int len, FanRecord val) |
| None | autoResizeSet (self, VertId i, FanRecord val) |
| FanRecord | back (self) |
| FanRecord | back (self) |
| VertId | backId (self) |
| VertId | beginId (self) |
| int | capacity (self) |
| None | clear (self) |
| FanRecord | data (self) |
| FanRecord | data (self) |
| FanRecord | emplace_back (self) |
| bool | empty (self) |
| VertId | endId (self) |
| FanRecord | front (self) |
| FanRecord | front (self) |
| int | heapBytes (self) |
| None | pop_back (self) |
| None | push_back (self, FanRecord t) |
| None | push_back (self, FanRecord t) |
| None | reserve (self, int capacity) |
| None | resize (self, int newSize) |
| None | resize (self, int newSize, FanRecord t) |
| None | resizeNoInit (self, int targetSize) |
| None | resizeWithReserve (self, int newSize) |
| None | resizeWithReserve (self, int newSize, FanRecord value) |
| int | size (self) |
| None | swap (self, Vector_FanRecord_VertId b) |
| std_vector_FanRecord | vec_ (self) |
| None | vec_ (self, std_vector_FanRecord arg1) |
Static Public Member Functions | |
| None | __init__ (*args, **kwargs) |
| Vector_FanRecord_VertId | operator (*args, **kwargs) |
| Vector_FanRecord_VertId | operator (*args, **kwargs) |
Static Public Attributes | |
| const_reference = FanRecord | |
| reference = FanRecord | |
| value_type = FanRecord | |
Static Protected Attributes | |
| typing | _offsetof_vec_ = 0 |
Generated from: MR::Vector<MR::FanRecord, MR::VertId> \\brief std::vector<T>-like container that requires specific indexing type, \\tparam T type of stored elements \\tparam I type of index (shall be convertible to size_t)
|
static |
| None mrmeshpy.Vector_FanRecord_VertId.__init__ | ( | self | ) |
creates empty vector
| None mrmeshpy.Vector_FanRecord_VertId.__init__ | ( | self, | |
| int | size ) |
creates a vector with \\p size elements with default value
| None mrmeshpy.Vector_FanRecord_VertId.__init__ | ( | self, | |
| int | size, | ||
| FanRecord | val ) |
creates a vector with \\p size elements with the given value
| None mrmeshpy.Vector_FanRecord_VertId.__init__ | ( | self, | |
| std_vector_FanRecord | vec ) |
moves data from the given std::vector<T>
| None mrmeshpy.Vector_FanRecord_VertId.__init__ | ( | self, | |
| Vector_FanRecord_VertId | arg0 ) |
Implicit copy constructor.
| typing.Iterator[FanRecord] mrmeshpy.Vector_FanRecord_VertId.__iter__ | ( | self | ) |
this accessor automatically adjusts the size of the vector
sets the element #i to the given value, adjusting the size of the vector to include new element
sets elements [pos, pos+len) to the given value, adjusting the size of the vector to include new elements; the elements in between old size and \\p pos are also set to \\p val (for faster implementation)
| FanRecord mrmeshpy.Vector_FanRecord_VertId.back | ( | self | ) |
| FanRecord mrmeshpy.Vector_FanRecord_VertId.back | ( | self | ) |
| VertId mrmeshpy.Vector_FanRecord_VertId.backId | ( | self | ) |
returns the identifier of the back() element
| VertId mrmeshpy.Vector_FanRecord_VertId.beginId | ( | self | ) |
returns the identifier of the first element
| int mrmeshpy.Vector_FanRecord_VertId.capacity | ( | self | ) |
| None mrmeshpy.Vector_FanRecord_VertId.clear | ( | self | ) |
| FanRecord mrmeshpy.Vector_FanRecord_VertId.data | ( | self | ) |
| FanRecord mrmeshpy.Vector_FanRecord_VertId.data | ( | self | ) |
| FanRecord mrmeshpy.Vector_FanRecord_VertId.emplace_back | ( | self | ) |
| bool mrmeshpy.Vector_FanRecord_VertId.empty | ( | self | ) |
| VertId mrmeshpy.Vector_FanRecord_VertId.endId | ( | self | ) |
returns backId() + 1
| FanRecord mrmeshpy.Vector_FanRecord_VertId.front | ( | self | ) |
| FanRecord mrmeshpy.Vector_FanRecord_VertId.front | ( | self | ) |
| int mrmeshpy.Vector_FanRecord_VertId.heapBytes | ( | self | ) |
returns the amount of memory this object occupies on heap
|
static |
|
static |
| None mrmeshpy.Vector_FanRecord_VertId.pop_back | ( | self | ) |
| None mrmeshpy.Vector_FanRecord_VertId.push_back | ( | self, | |
| FanRecord | t ) |
| None mrmeshpy.Vector_FanRecord_VertId.push_back | ( | self, | |
| FanRecord | t ) |
| None mrmeshpy.Vector_FanRecord_VertId.reserve | ( | self, | |
| int | capacity ) |
| None mrmeshpy.Vector_FanRecord_VertId.resize | ( | self, | |
| int | newSize ) |
| None mrmeshpy.Vector_FanRecord_VertId.resize | ( | self, | |
| int | newSize, | ||
| FanRecord | t ) |
| None mrmeshpy.Vector_FanRecord_VertId.resizeNoInit | ( | self, | |
| int | targetSize ) |
resizes the vector skipping initialization of its elements (more precisely initializing them using ( noInit ) constructor )
| None mrmeshpy.Vector_FanRecord_VertId.resizeWithReserve | ( | self, | |
| int | newSize ) |
doubles reserved memory until resize(newSize) can be done without reallocation
| None mrmeshpy.Vector_FanRecord_VertId.resizeWithReserve | ( | self, | |
| int | newSize, | ||
| FanRecord | value ) |
doubles reserved memory until resize(newSize, value) can be done without reallocation
| int mrmeshpy.Vector_FanRecord_VertId.size | ( | self | ) |
| None mrmeshpy.Vector_FanRecord_VertId.swap | ( | self, | |
| Vector_FanRecord_VertId | b ) |
| std_vector_FanRecord mrmeshpy.Vector_FanRecord_VertId.vec_ | ( | self | ) |
the user can directly manipulate the vector, anyway she cannot break anything
| None mrmeshpy.Vector_FanRecord_VertId.vec_ | ( | self, | |
| std_vector_FanRecord | arg1 ) |
|
staticprotected |
|
static |
|
static |
|
static |