#include <CGAL/Simple_cartesian.h>
#include <CGAL/Weights/three_point_family_weights.h>
using FT = typename Kernel::FT;
int main() {
std::cout << std::fixed;
const FT wp = 0.0;
const FT mv = 1.0;
std::cout << "3D Wachspress (WP, q0): ";
std::cout << "3D mean value (MV, q0): ";
std::cout << "Converge WP to MV on q0: " << std::endl;
const FT step = 0.1;
for (FT x = 0.0; x <= 1.0; x += step) {
std::cout << "3D x: ";
}
return EXIT_SUCCESS;
}
GeomTraits::FT three_point_family_weight(const typename GeomTraits::Point_2 &p0, const typename GeomTraits::Point_2 &p1, const typename GeomTraits::Point_2 &p2, const typename GeomTraits::Point_2 &q, const typename GeomTraits::FT a, const GeomTraits &traits)
computes the three-point family weight in 2D at q using the points p0, p1 and p2, and the power param...
Definition: three_point_family_weights.h:60