Files
cgal/Polygon_mesh_processing
Sebastien Loriot 7ea06c63ea Get the last picked item (#9066)
You can now do:

```c++
  Random_points_in_triangle_mesh_3<TriangleMesh> g(mesh, r);
  Point c;
  face_descriptor fc;
  std::tie(c,fc) = g.point_and_support();
  ++g;
```

to get the normal of the picked point

cc @huang46u 

Small feature:
[here](https://cgalwiki.geometryfactory.com/CGAL/Members/wiki/Features/Small_Features/Generator_point_and_support)
2026-03-18 19:30:19 +01:00
..