EntropyCanvas::MeshExtractionResult
EntropyCanvas::MeshExtractionResult
Section titled “EntropyCanvas::MeshExtractionResult”Result of mesh extraction.
#include <MeshData.h>
Public Functions
Section titled “Public Functions”| Name | |
|---|---|
| size_t | totalVertexCount() const Get total vertex count across all meshes. |
| size_t | totalTriangleCount() const Get total triangle count across all meshes. |
| bool | isSuccess() const Check if extraction was successful. |
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| bool | success Whether extraction succeeded. |
| std::vector< MeshData > | meshes All extracted meshes. |
| std::string | errorMessage Error message if extraction failed. |
Public Functions Documentation
Section titled “Public Functions Documentation”function totalVertexCount
Section titled “function totalVertexCount”inline size_t totalVertexCount() constGet total vertex count across all meshes.
function totalTriangleCount
Section titled “function totalTriangleCount”inline size_t totalTriangleCount() constGet total triangle count across all meshes.
function isSuccess
Section titled “function isSuccess”inline bool isSuccess() constCheck if extraction was successful.
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable success
Section titled “variable success”bool success = false;Whether extraction succeeded.
variable meshes
Section titled “variable meshes”std::vector< MeshData > meshes;All extracted meshes.
variable errorMessage
Section titled “variable errorMessage”std::string errorMessage;Error message if extraction failed.
Updated on 2026-01-26 at 17:14:35 -0500