CGAL 5.1.5 - 2D and 3D Linear Geometry Kernel
|
AdaptableFunctor
(with four arguments)CGAL::circumcenter()
Operations | |
Kernel::Point_3 | operator() (const Kernel::Point_3 &p, const Kernel::Point_3 &q) |
compute the center of the smallest circle passing through the points p and q . More... | |
Kernel::Point_3 | operator() (const Kernel::Point_3 &p, const Kernel::Point_3 &q, const Kernel::Point_3 &r, const Kernel::Point_3 &s) |
compute the center of the sphere passing through the points p , q , r , and s . More... | |
Kernel::Point_3 | operator() (const Kernel::Tetrahedron_3 &t) |
compute the center of the sphere passing through the vertices of t . More... | |
Kernel::Point_3 | operator() (const Kernel::Point_3 &p, const Kernel::Point_3 &q, const Kernel::Point_3 &r) |
compute the center of the circle passing through the points p , q and r . More... | |
Kernel::Point_3 | operator() (const Kernel::Triangle_3 &t) |
compute the center of the circle passing through the vertices of t . More... | |
Kernel::Point_3 Kernel::ConstructCircumcenter_3::operator() | ( | const Kernel::Point_3 & | p, |
const Kernel::Point_3 & | q | ||
) |
compute the center of the smallest circle passing through the points p
and q
.
Note : this is the same as Kernel::ConstructMidpoint_3
.
Kernel::Point_3 Kernel::ConstructCircumcenter_3::operator() | ( | const Kernel::Point_3 & | p, |
const Kernel::Point_3 & | q, | ||
const Kernel::Point_3 & | r, | ||
const Kernel::Point_3 & | s | ||
) |
compute the center of the sphere passing through the points p
, q
, r
, and s
.
p
, q
, r
, and s
are not coplanar. Kernel::Point_3 Kernel::ConstructCircumcenter_3::operator() | ( | const Kernel::Tetrahedron_3 & | t | ) |
compute the center of the sphere passing through the vertices of t
.
t
is not degenerate. Kernel::Point_3 Kernel::ConstructCircumcenter_3::operator() | ( | const Kernel::Point_3 & | p, |
const Kernel::Point_3 & | q, | ||
const Kernel::Point_3 & | r | ||
) |
compute the center of the circle passing through the points p
, q
and r
.
p
, q
and r
are not collinear. Kernel::Point_3 Kernel::ConstructCircumcenter_3::operator() | ( | const Kernel::Triangle_3 & | t | ) |
compute the center of the circle passing through the vertices of t
.
t
is not degenerate.