Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] convex hull, indices of extreme points

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] convex hull, indices of extreme points


Chronological Thread 
  • From: ebrattr <>
  • To:
  • Subject: Re: [cgal-discuss] convex hull, indices of extreme points
  • Date: Sun, 15 Jun 2014 15:45:39 -0700 (PDT)

I solve the problem going to the file Point_3.h and adding:

"int index;"

->

}

Cartesian_const_iterator cartesian_end() const
{
return base.cartesian_end();
}

int dimension() const
{
return base.dimension();
}

int index;

Point_3 transform(const Aff_transformation_3 &t) const
{
return t.transform(*this);
}
};



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/convex-hull-indices-of-extreme-points-tp3951634p4659451.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page