Libs/Mesh/PreviewMeshQC/FEVTKExport.h
Classes
| Name | |
|---|---|
| struct | VTKEXPORT |
| class | FEVTKExport |
Source code
```cpp
pragma once
include
include
include
include
class FEMesh;
//----------------------------------------------------------------------------- struct VTKEXPORT { bool bshellthick; // shell thickness bool bscalar_data; // user scalar data };
class FEVTKExport { public: FEVTKExport(); ~FEVTKExport() = default;
bool Export(FEMesh& mesh, const char* szfile); std::string ExportToString(FEMesh& mesh); bool ExportToStream(FEMesh& mesh, std::ostream& out); void SetOptions(VTKEXPORT o) { m_ops = o; }
vtkSmartPointer
private: VTKEXPORT m_ops; }; ```
Updated on 2026-03-31 at 16:02:11 +0000