Esempio n. 1
0
mesh_core::Plane::Plane(
      const EigenSTL::vector_Vector3d& points)
{
  if (points.size() <= 3)
    from3Points(points);
  else
    leastSquaresGeneral(points);
}
Plane<T>::Plane(const Vec3& v1, const Vec3& v2, const Vec3& v3){
	from3Points(v1,v2,v3);
}