CGAL::angle() applications #5988
-
Hi, What do you usually use I tried to search in CGAL repo but I cannot find explanation about: Is it correct? And what do you usually use this for? Detection of concave or convex corners? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Usage in CGAL
Meaning
Yes, that is right. That has the same meaning as the mathematical meaning:
|
Beta Was this translation helpful? Give feedback.
Usage in CGAL
CGAL::angle
is not directly used, in CGAL. In the CGAL algorithm, we use the kernel API:CGAL::Angle_2
andCGAL::Angle_3
.Angle_2
is used in:Mesh_2/include/CGAL/Mesh_2/Refine_edges.h
, andMesh_2/include/CGAL/Mesh_2/Clusters.h
.Angle_3
is used in:Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h
, andSurface_mesh_segmentation/include/CGAL/Surface_mesh_segmentation/internal/SDF_calculation.h
.Meaning
Yes, that is right. That has the same meaning as the math…