Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] 3D reflection function of point with respect to a plane

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] 3D reflection function of point with respect to a plane


Chronological Thread 
  • From: Pierre Alliez <>
  • To:
  • Subject: Re: [cgal-discuss] 3D reflection function of point with respect to a plane
  • Date: Mon, 28 Apr 2008 11:26:41 +0200
  • Organization: INRIA Sophia Antipolis - Méditerranée

hi Samuel,

calling plane.projection() gives you the projection of a point on a plane.

Something like:

Plane plane;
Point a;
Point b = plane.projection(a);
Point c = b + (b - a);


samuel kim a écrit :
Hi all,

Do you know if I can use a simple function to reflect a 3D point with
respect to a plane?
Just let me know if anyone knows it. Thanks.

Samuel






Archive powered by MHonArc 2.6.16.

Top of Page