Fixed warnings in Composite computation (extra;)
Fixed missing this pointer in PolyMeshT.hh Added unittest for dihedral angle function git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@757 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -472,11 +472,11 @@ public:
|
||||
|
||||
// calculates the dihedral angle on the edge _eh
|
||||
Scalar calc_dihedral_angle(EdgeHandle _eh) const
|
||||
{ return calc_dihedral_angle(halfedge_handle(_eh,0)); }
|
||||
{ return calc_dihedral_angle(this->halfedge_handle(_eh,0)); }
|
||||
|
||||
/** tags an edge as a feature if its dihedral angle is larger than _angle_tresh
|
||||
returns the number of the found feature edges, requires edge_status property*/
|
||||
uint find_feature_edges(Scalar _angle_tresh = OpenMesh::deg_to_rad(44.0));
|
||||
unsigned int find_feature_edges(Scalar _angle_tresh = OpenMesh::deg_to_rad(44.0));
|
||||
// --- misc ---
|
||||
|
||||
/// Face split (= 1-to-n split)
|
||||
|
||||
Reference in New Issue
Block a user