98 std::string
get_description()
const override {
return "PLY polygon file format"; }
101 bool write(
const std::string&,
BaseExporter&,
const Options& _writeOptions, std::streamsize _precision = 6)
const override;
103 bool write(std::ostream&,
BaseExporter&,
const Options& _writeOptions, std::streamsize _precision = 6)
const override;
109 ValueTypeFLOAT32, ValueTypeFLOAT,
110 ValueTypeINT32, ValueTypeINT , ValueTypeUINT,
111 ValueTypeUCHAR, ValueTypeCHAR, ValueTypeUINT8,
112 ValueTypeUSHORT, ValueTypeSHORT,
117 mutable Options options_;
119 struct CustomProperty
123 explicit CustomProperty(
const BaseProperty*
const _p):type(Unsupported),property(_p){}
126 const char* nameOfType_[12];
129 std::vector<CustomProperty> writeCustomTypeHeader(std::ostream& _out, BaseKernel::const_prop_iterator _begin, BaseKernel::const_prop_iterator _end)
const;
130 template<
bool binary>
131 void write_customProp(std::ostream& _our,
const CustomProperty& _prop,
size_t _index)
const;
133 void writeProxy(ValueType _type, std::ostream& _out, T _value, OpenMesh::GenProg::TrueType )
const
135 writeValue(_type, _out, _value);
138 void writeProxy(ValueType , std::ostream& _out, T _value, OpenMesh::GenProg::FalseType )
const
140 _out <<
" " << _value;
144 void writeValue(ValueType _type, std::ostream& _out,
signed char value)
const;
145 void writeValue(ValueType _type, std::ostream& _out,
unsigned char value)
const;
146 void writeValue(ValueType _type, std::ostream& _out,
short value)
const;
147 void writeValue(ValueType _type, std::ostream& _out,
unsigned short value)
const;
148 void writeValue(ValueType _type, std::ostream& _out,
int value)
const;
149 void writeValue(ValueType _type, std::ostream& _out,
unsigned int value)
const;
150 void writeValue(ValueType _type, std::ostream& _out,
float value)
const;
151 void writeValue(ValueType _type, std::ostream& _out,
double value)
const;
153 bool write_ascii(std::ostream& _out, BaseExporter&, Options)
const;
154 bool write_binary(std::ostream& _out, BaseExporter&, Options)
const;
156 void write_header(std::ostream& _out, BaseExporter& _be, Options& _opt, std::vector<CustomProperty>& _ovProps, std::vector<CustomProperty>& _ofProps)
const;
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition MeshItems.hh:59