Home
last modified time | relevance | path

Searched refs:ply_type (Results 1 – 3 of 3) sorted by relevance

/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libigl/igl/
H A DwritePLY.cpp16 template <typename Scalar> int ply_type();
19 template <> int ply_type<int>(){ return PLY_INT; } in ply_type() function
61 {"x", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,x),0,0,0,0}, in writePLY()
62 {"y", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,y),0,0,0,0}, in writePLY()
63 {"z", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,z),0,0,0,0}, in writePLY()
64 {"nx",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,nx),0,0,0,0}, in writePLY()
65 {"ny",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,ny),0,0,0,0}, in writePLY()
66 {"nz",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,nz),0,0,0,0}, in writePLY()
67 {"s", ply_type<UVScalar>(),ply_type<UVScalar>(),offsetof(Vertex,s),0,0,0,0}, in writePLY()
68 {"t", ply_type<UVScalar>(),ply_type<UVScalar>(),offsetof(Vertex,t),0,0,0,0}, in writePLY()
[all …]
/dports/graphics/wings/libigl-2.1.0/include/igl/
H A DwritePLY.cpp16 template <typename Scalar> int ply_type();
19 template <> int ply_type<int>(){ return PLY_INT; } in ply_type() function
61 {"x", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,x),0,0,0,0}, in writePLY()
62 {"y", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,y),0,0,0,0}, in writePLY()
63 {"z", ply_type<VScalar>(), ply_type<VScalar>(),offsetof(Vertex,z),0,0,0,0}, in writePLY()
64 {"nx",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,nx),0,0,0,0}, in writePLY()
65 {"ny",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,ny),0,0,0,0}, in writePLY()
66 {"nz",ply_type<NScalar>(), ply_type<NScalar>(),offsetof(Vertex,nz),0,0,0,0}, in writePLY()
67 {"s", ply_type<UVScalar>(),ply_type<UVScalar>(),offsetof(Vertex,s),0,0,0,0}, in writePLY()
68 {"t", ply_type<UVScalar>(),ply_type<UVScalar>(),offsetof(Vertex,t),0,0,0,0}, in writePLY()
[all …]
/dports/graphics/instant-meshes/instant-meshes-0.0-42-g4a083f4/src/
H A Dserializer.cpp171 #define IMPLEMENT(ply_type, type) \ in Serializer() argument
172 case ply_type: \ in Serializer()
248 #define IMPLEMENT(ply_type, type) \ in write() argument
252 ply_add_scalar_property(ply, "value", ply_type); \ in write()
255 … ply_add_scalar_property(ply, ("value_" + std::to_string(i)).c_str(), ply_type); \ in write()
262 …y, "value", max_size < 256 ? PLY_UINT8 : (max_size < 65536 ? PLY_UINT16 : PLY_UINT32), ply_type); \ in write()