23#ifndef VCL_IO_MESH_OFF_CAPABILITY_H
24#define VCL_IO_MESH_OFF_CAPABILITY_H
26#include <vclib/io/file_format.h>
28#include <vclib/space/complex.h>
32constexpr FileFormat offFileFormat()
34 return FileFormat(
"off",
"OFF Object File Format .off");
37inline MeshInfo offFormatCapability()
41 info.setPolygonMesh();
46 info.setPerVertexPosition();
47 info.setPerVertexNormal();
48 info.setPerVertexColor();
49 info.setPerVertexTexCoord();
51 info.setPerFaceVertexReferences();
52 info.setPerFaceColor();