Public Member Functions | |
| bool | __eq__ (self, FaceNormals b) |
| Vector3f | __getitem__ (self, FaceId i) |
| Vector3f | __getitem__ (self, FaceId i) |
| None | __init__ (self) |
| None | __init__ (self, int size) |
| None | __init__ (self, int size, Vector3f val) |
| None | __init__ (self, std_vector_Vector3_float vec) |
| None | __init__ (self, FaceNormals arg0) |
| typing.Iterator[Vector3f] | __iter__ (self) |
| bool | __ne__ (self, FaceNormals b) |
| None | __setitem__ (self, FaceId arg0, Vector3f arg1) |
| Vector3f | autoResizeAt (self, FaceId i) |
| None | autoResizeSet (self, FaceId pos, int len, Vector3f val) |
| None | autoResizeSet (self, FaceId i, Vector3f val) |
| Vector3f | back (self) |
| Vector3f | back (self) |
| FaceId | backId (self) |
| FaceId | beginId (self) |
| int | capacity (self) |
| None | clear (self) |
| Vector3f | data (self) |
| Vector3f | data (self) |
| Vector3f | emplace_back (self) |
| bool | empty (self) |
| FaceId | endId (self) |
| Vector3f | front (self) |
| Vector3f | front (self) |
| int | heapBytes (self) |
| None | pop_back (self) |
| None | push_back (self, Vector3f t) |
| None | push_back (self, Vector3f t) |
| None | reserve (self, int capacity) |
| None | resize (self, int newSize) |
| None | resize (self, int newSize, Vector3f t) |
| None | resizeNoInit (self, int targetSize) |
| None | resizeWithReserve (self, int newSize) |
| None | resizeWithReserve (self, int newSize, Vector3f value) |
| int | size (self) |
| None | swap (self, FaceNormals b) |
| std_vector_Vector3_float | vec (self) |
| None | vec (self, std_vector_Vector3_float arg1) |
| std_vector_Vector3_float | vec_ (self) |
| None | vec_ (self, std_vector_Vector3_float arg1) |
Static Public Member Functions | |
| None | __init__ (*args, **kwargs) |
| FaceNormals | operator (*args, **kwargs) |
| FaceNormals | operator (*args, **kwargs) |
Static Protected Attributes | |
| typing | _offsetof_vec_ = 0 |
Generated from: MR::FaceNormals \\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.FaceNormals.__init__ | ( | self | ) |
creates empty vector
| None mrmeshpy.FaceNormals.__init__ | ( | self, | |
| int | size ) |
creates a vector with \\p size elements with default value
| None mrmeshpy.FaceNormals.__init__ | ( | self, | |
| int | size, | ||
| Vector3f | val ) |
creates a vector with \\p size elements with the given value
| None mrmeshpy.FaceNormals.__init__ | ( | self, | |
| std_vector_Vector3_float | vec ) |
moves data from the given std::vector<T>
| None mrmeshpy.FaceNormals.__init__ | ( | self, | |
| FaceNormals | arg0 ) |
Implicit copy constructor.
| bool mrmeshpy.FaceNormals.__eq__ | ( | self, | |
| FaceNormals | b ) |
| typing.Iterator[Vector3f] mrmeshpy.FaceNormals.__iter__ | ( | self | ) |
| bool mrmeshpy.FaceNormals.__ne__ | ( | self, | |
| FaceNormals | b ) |
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)
| Vector3f mrmeshpy.FaceNormals.back | ( | self | ) |
| Vector3f mrmeshpy.FaceNormals.back | ( | self | ) |
| FaceId mrmeshpy.FaceNormals.backId | ( | self | ) |
returns the identifier of the back() element
| FaceId mrmeshpy.FaceNormals.beginId | ( | self | ) |
returns the identifier of the first element
| int mrmeshpy.FaceNormals.capacity | ( | self | ) |
| None mrmeshpy.FaceNormals.clear | ( | self | ) |
| Vector3f mrmeshpy.FaceNormals.data | ( | self | ) |
| Vector3f mrmeshpy.FaceNormals.data | ( | self | ) |
| Vector3f mrmeshpy.FaceNormals.emplace_back | ( | self | ) |
| bool mrmeshpy.FaceNormals.empty | ( | self | ) |
| FaceId mrmeshpy.FaceNormals.endId | ( | self | ) |
returns backId() + 1
| Vector3f mrmeshpy.FaceNormals.front | ( | self | ) |
| Vector3f mrmeshpy.FaceNormals.front | ( | self | ) |
| int mrmeshpy.FaceNormals.heapBytes | ( | self | ) |
returns the amount of memory this object occupies on heap
|
static |
|
static |
| None mrmeshpy.FaceNormals.pop_back | ( | self | ) |
| None mrmeshpy.FaceNormals.push_back | ( | self, | |
| Vector3f | t ) |
| None mrmeshpy.FaceNormals.push_back | ( | self, | |
| Vector3f | t ) |
| None mrmeshpy.FaceNormals.reserve | ( | self, | |
| int | capacity ) |
| None mrmeshpy.FaceNormals.resize | ( | self, | |
| int | newSize ) |
| None mrmeshpy.FaceNormals.resize | ( | self, | |
| int | newSize, | ||
| Vector3f | t ) |
| None mrmeshpy.FaceNormals.resizeNoInit | ( | self, | |
| int | targetSize ) |
resizes the vector skipping initialization of its elements (more precisely initializing them using ( noInit ) constructor )
| None mrmeshpy.FaceNormals.resizeWithReserve | ( | self, | |
| int | newSize ) |
doubles reserved memory until resize(newSize) can be done without reallocation
| None mrmeshpy.FaceNormals.resizeWithReserve | ( | self, | |
| int | newSize, | ||
| Vector3f | value ) |
doubles reserved memory until resize(newSize, value) can be done without reallocation
| int mrmeshpy.FaceNormals.size | ( | self | ) |
| None mrmeshpy.FaceNormals.swap | ( | self, | |
| FaceNormals | b ) |
| std_vector_Vector3_float mrmeshpy.FaceNormals.vec | ( | self | ) |
the user can directly manipulate the vector, anyway she cannot break anything
| None mrmeshpy.FaceNormals.vec | ( | self, | |
| std_vector_Vector3_float | arg1 ) |
| std_vector_Vector3_float mrmeshpy.FaceNormals.vec_ | ( | self | ) |
the user can directly manipulate the vector, anyway she cannot break anything
| None mrmeshpy.FaceNormals.vec_ | ( | self, | |
| std_vector_Vector3_float | arg1 ) |
|
staticprotected |