85 typedef typename SmootherT<Mesh>::Continuity Continuity;
86 typedef typename SmootherT<Mesh>::Scalar Scalar;
87 typedef typename SmootherT<Mesh>::VertexHandle VertexHandle;
88 typedef typename SmootherT<Mesh>::EdgeHandle EdgeHandle;
91 LaplaceSmootherT( Mesh& _mesh );
92 virtual ~LaplaceSmootherT();
95 void initialize(Component _comp, Continuity _cont);
102 Scalar weight(VertexHandle _vh)
const
103 {
return Base::mesh_.property(vertex_weights_, _vh); }
105 Scalar weight(EdgeHandle _eh)
const
106 {
return Base::mesh_.property(edge_weights_, _eh); }
111 enum LaplaceWeighting { UniformWeighting, CotWeighting };
112 void compute_weights(LaplaceWeighting _mode);
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition MeshItems.hh:64