23#ifndef VCL_IO_MESH_STL_CAPABILITY_H
24#define VCL_IO_MESH_STL_CAPABILITY_H
26#include <vclib/io/file_format.h>
28#include <vclib/space/complex.h>
32constexpr FileFormat stlFileFormat()
34 return FileFormat(
"stl",
"STL Stereolithography .stl");
37inline MeshInfo stlFormatCapability()
41 info.setTriangleMesh();
45 info.setPerVertexPosition();
49 info.setPerFaceVertexReferences();
50 info.setPerFaceColor();
51 info.setPerFaceNormal();