Skip to Content.
Sympa Menu

cgal-discuss - Re: Re: Re:[cgal-discuss] Location of point relative to polyhedron

Subject: CGAL users discussion list

List archive

Re: Re: Re:[cgal-discuss] Location of point relative to polyhedron


Chronological Thread 
  • From: "LoadCom" <>
  • To: "" <>
  • Subject: Re: Re: Re:[cgal-discuss] Location of point relative to polyhedron
  • Date: Fri, 20 Jul 2007 08:14:28 +0800
  • Disposition-notification-to: "LoadCom" <>
  • Organization: LoadCom

Hello Peter,

That means Nef_polyhedron could be regarded as the 3D counterpart of
Arrangement_2?

Thanks.

Max

发件人:Peter Hachenberger
发送日期:2007-07-19 17:58:36
收件人:
抄送:
主题:Re: Re:[cgal-discuss] Location of point relative to polyhedron

A Nef_polyhedron is a decomposition of the 3-space into
vertices, edges, facets, and volumes. That means, the outer volume is
also modeled as a volume. You can distinguish the inner and outer volume
by its mark.

Volume_handle c;
Object_handle o;
o = myNef.locate(Point_3(5,3,2));
if(assign(c, o))
if(c->mark())
std::cerr << "found inner volume" << std::endl;
else
std::cerr << "found outer volume" << std::endl;


Peter

On Thu, 2007-07-19 at 07:29 +0200, Thomas Zangl - Home wrote:
> Am Wed, 18 Jul 2007 19:43:40 +0200, schrieb "Peter Hachenberger"
> <>:
> >covert Polyedron_3 to Nef_polyedron_3
>
> And how will myNefPolyhedron.locate(myPoint) work? The docs are a bit
> unclear:
>
> returns a generic handle to the object (vertex, edge, facet or volume)
> which contains the point p in its relative interior.
>
> What if the point is not in the Polyhedron? Returns NULL? Please
> elaborate!
>
> Thank you in advance,
> --
> ----------------------------------------------------------------
> ,yours Thomas Zangl, Bakk.rer.soc.oec. -
>
> -
> - Freelancer - IT Consulting & Software Development -
> - Student of Software Development-Economy (Master) -
--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://lists-sop.inria.fr/wws/info/cgal-discuss





Archive powered by MHonArc 2.6.16.

Top of Page