|
|
|
|
@ -105,6 +105,9 @@ class MAGNUM_EXPORT MeshView {
|
|
|
|
|
/** @brief Movement is not allowed */ |
|
|
|
|
MeshView& operator=(MeshView&& other) = delete; |
|
|
|
|
|
|
|
|
|
/** @brief Vertex/index count */ |
|
|
|
|
Int count() const { return _count; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Set vertex/index count |
|
|
|
|
* @return Reference to self (for method chaining) |
|
|
|
|
@ -116,6 +119,9 @@ class MAGNUM_EXPORT MeshView {
|
|
|
|
|
return *this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** @brief Base vertex */ |
|
|
|
|
Int baseVertex() const { return _baseVertex; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Set base vertex |
|
|
|
|
* @return Reference to self (for method chaining) |
|
|
|
|
|