60 #ifndef OPENMESH_DECIMATER_MODNORMALFLIPPING_HH 61 #define OPENMESH_DECIMATER_MODNORMALFLIPPING_HH 84 template <
typename MeshT>
97 const bool mesh_has_normals = _mesh.has_face_normals();
98 _mesh.request_face_normals();
100 if (!mesh_has_normals)
102 omerr() <<
"Mesh has no face normals. Compute them automatically." << std::endl;
103 _mesh.update_face_normals();
110 Base::mesh().release_face_normals();
133 Base::mesh().set_point(_ci.
v0, _ci.
p1);
137 typename Mesh::FaceHandle fh;
140 for (; vf_it.is_valid(); ++vf_it)
143 if (fh != _ci.
fl && fh != _ci.
fr)
146 typename Mesh::Normal n2 = Base::mesh().calc_face_normal(fh);
156 Base::mesh().set_point(_ci.
v0, _ci.
p0);
158 return float( (c < min_cos_) ? Base::ILLEGAL_COLLAPSE : Base::LEGAL_COLLAPSE );
163 if (_factor >= 0.0 && _factor <= 1.0) {
167 double max_normal_deviation = (max_deviation_ * 180.0/M_PI) * _factor / this->error_tolerance_factor_;
169 this->error_tolerance_factor_ = _factor;
185 max_deviation_ = _d / 180.0 * M_PI;
186 min_cos_ = cos(max_deviation_);
192 void set_binary(
bool _b) {}
197 double max_deviation_, min_cos_;
205 #endif // OPENACG_MODNORMALFLIPPING_HH defined Mesh::FaceHandle fl
Left face.
Mesh::FaceHandle fr
Right face.
double max_normal_deviation() const
get normal deviation
Mesh::Point p1
Positions of remaining vertex.
Mesh::Point p0
Position of removed vertex.
Mesh::VertexHandle v0
Vertex to be removed.
Kernel::Normal Normal
Normal type.
ModNormalFlippingT(MeshT &_mesh)
Constructor.
void set_error_tolerance_factor(double _factor)
set the percentage of maximum normal deviation
float collapse_priority(const CollapseInfo &_ci)
void set_max_normal_deviation(double _d)
osg::Vec3f::ValueType dot(const osg::Vec3f &_v1, const osg::Vec3f &_v2)
Adapter for osg vector member computing a scalar product.
Kernel::ConstVertexFaceIter ConstVertexFaceIter
Circulator.
Kernel::Scalar Scalar
Scalar type.