Exporting an SVG mesh. More...
#include <arcane/core/SimpleSVGMeshExporter.h>
Classes | |
| class | Impl |
Public Member Functions | |
| SimpleSVGMeshExporter (std::ostream &ofile) | |
| Create an instance associated with the ofile stream. | |
| SimpleSVGMeshExporter (const SimpleSVGMeshExporter &rhs)=delete | |
| SimpleSVGMeshExporter & | operator= (const SimpleSVGMeshExporter &rhs)=delete |
| void | write (const CellGroup &cells) |
| Exports the entities of the cells group. | |
Exporting an SVG mesh.
This class only works for 2D meshes. Only the x and y components are considered. After creating an instance, it is possible to call the writeGroup() method to export the entities associated with the cell group (nodes, faces, and cells).
Definition at line 38 of file SimpleSVGMeshExporter.h.
| Arcane::SimpleSVGMeshExporter::SimpleSVGMeshExporter | ( | std::ostream & | ofile | ) |
Create an instance associated with the ofile stream.
The ofile stream must remain valid throughout the lifetime of the instance.
Definition at line 234 of file SimpleSVGMeshExporter.cc.
| Arcane::SimpleSVGMeshExporter::~SimpleSVGMeshExporter | ( | ) |
Definition at line 243 of file SimpleSVGMeshExporter.cc.
| void Arcane::SimpleSVGMeshExporter::write | ( | const CellGroup & | cells | ) |
Exports the entities of the cells group.
Currently, it is not possible to call this method multiple times.
Definition at line 252 of file SimpleSVGMeshExporter.cc.
Referenced by Arcane::CartesianMeshCoarsening::createCoarseCells().