Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] AABBTree primitives or objects problem

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] AABBTree primitives or objects problem


Chronological Thread 
  • From: Roberto Lam <>
  • To:
  • Subject: Re: [cgal-discuss] AABBTree primitives or objects problem
  • Date: Fri, 4 Dec 2009 10:34:02 +0000
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=wPwOqI0PQXPsAXgRRmAohdUbusBcz/zuPAB8Nz4EJDGlBTng3lplq8W/wBTqngle0X /DI8VgJwr1TnMq5MpA8Ol103Jxcjx4ArpD7dJM12V8CVqc9ReKYTCmlhUsvEh1oMIECY VyLN0FW3UDN337Yvxa8751THCGWLbFUauSzws=

Hi Camile,
thanks for the quick answer. You are right I am using
and indeed isn't a AABBTree problem. There is any way to access
information from the primitives? Where can I get more information
them? In the code (below) I saw in VS debugger that 'op' has a
'second' field. So far I discover from the debugger that has
information on facet (I am using a polyhedron_3 as base for
constructing my AABBTree) but I dont know what is or how to use it.

thanks for the help
roberto

/**************************************/
for ( it=intersections.begin() ; it != intersections.end(); it++ ){
Object_and_primitive_id op = *it;
CGAL::Object object = op.first;
Point point;
if(CGAL::assign(point,object))
std::cout << "intersection object is a point : " << point <<
std::endl;

}



Archive powered by MHonArc 2.6.16.

Top of Page