~ubuntu-branches/debian/stretch/cgal/stretch

« back to all changes in this revision

Viewing changes to include/CGAL/Poisson_reconstruction_function.h

  • Committer: Package Import Robot
  • Author(s): Joachim Reichel
  • Date: 2014-04-05 10:56:43 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140405105643-jgnrpu2thtx23zfs
Tags: 4.4-1
* New upstream release.
* Remove patches do-not-link-example-with-qt4-support-library.patch and
  fix_jet_fitting_3.patch (applied upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
303
303
    NormalPMap normal_pmap ///< property map: `value_type of InputIterator` -> `Vector` (the *oriented* normal of an input point).
304
304
  )
305
305
    : m_tr(new Triangulation), m_Bary(new std::vector<boost::array<double,9> > )
306
 
    , average_spacing(CGAL::compute_average_spacing(first, beyond, 6))
 
306
    , average_spacing(CGAL::compute_average_spacing(first, beyond, point_pmap, 6))
307
307
  {
308
308
    forward_constructor(first, beyond, point_pmap, normal_pmap, Poisson_visitor());
309
309
  }
321
321
    NormalPMap normal_pmap, ///< property map: `value_type of InputIterator` -> `Vector` (the *oriented* normal of an input point).
322
322
    Visitor visitor)
323
323
    : m_tr(new Triangulation), m_Bary(new std::vector<boost::array<double,9> > )
324
 
    , average_spacing(CGAL::compute_average_spacing(first, beyond, 6))
 
324
    , average_spacing(CGAL::compute_average_spacing(first, beyond, point_pmap, 6))
325
325
  {
326
326
    forward_constructor(first, beyond, point_pmap, normal_pmap, visitor);
327
327
  }