|
Circin6Tuple
6-Tuple (radius, center, deltas, cA, cB, cC) with the
radius , the trilaterated center and
contact points of the inscribed aka In- circle of a
triangle.
|
|
Circum3Tuple
3-Tuple (radius, center, deltas) with the
circumradius and trilaterated
circumcenter of the circumcircle through
3 points (aka {Meeus}' Type II circle) or the radius
and center of the smallest Meeus' Type I
circle.
|
|
Circum4Tuple
4-Tuple (radius, center, rank, residuals) with
radius and center of a sphere
least-squares fitted through given points and the
rank and residuals -if any- from numpy.linalg.lstsq.
|
|
Meeus2Tuple
2-Tuple (radius, Type) with radius and
Meeus' Type of the smallest circle
containing 3 points.
|
|
Radii11Tuple
11-Tuple (rA, rB, rC, cR, rIn, riS, roS, a, b, c, s)
with the Tangent circle radii rA ,
rB and rC , the circumradius
cR , the Incircle radius rIn
aka inradius , the inner and outer Soddy circle
radii riS and roS , the sides
a , b and c and
semi-perimeter s of a triangle, all in
meter conventionally.
|
|
Soddy4Tuple
4-Tuple (radius, center, deltas, outer) with
radius and (trilaterated) center of the
inner Soddy circle and the radius of the
outer Soddy circle.
|
|
Triaxum5Tuple
5-Tuple (a, b, c, rank, residuals) with the
(unordered) triaxial radii a , b and
c of an ellipsoid least-squares fitted through
given points and the rank and residuals
-if any- from numpy.linalg.lstsq.
|
|
circin6(point1,
point2,
point3,
eps=8.881784197001252e-16,
useZ=True)
Return the radius and center of the inscribed aka
Incircle of a (2- or 3-D) triangle. |
|
|
|
circum3(point1,
point2,
point3,
circum=True,
eps=8.881784197001252e-16,
useZ=True)
Return the radius and center of the smallest circle through or
containing three (2- or 3-D) points. |
|
|
|
circum4(points,
useZ=True,
**Vector_and_kwds)
Best-fit a sphere through three or more (3-D) points. |
|
|
|
circum4_(*points,
**useZ_Vector_and_kwds)
Best-fit a sphere through three or more (3-D) positional points. |
|
|
|
meeus2(point1,
point2,
point3,
circum=False,
useZ=True)
Return the radius and Meeus' Type of the smallest circle
through or containing three (2- or 3-D) points. |
|
|
|
radii11(point1,
point2,
point3,
useZ=True)
Return the radii of the In- , Soddy and
Tangent circles of a (2- or 3-D) triangle. |
|
|
|
soddy4(point1,
point2,
point3,
eps=8.881784197001252e-16,
useZ=True)
Return the radius and center of the inner Soddy
circle of a (2- or 3-D) triangle. |
|
|
|
triaxum5(points,
useZ=True)
Best-fit a triaxial ellipsoid through three or more (3-D) points. |
|
|
|
trilaterate2d2(x1,
y1,
radius1,
x2,
y2,
radius2,
x3,
y3,
radius3,
eps=None,
**Vector_and_kwds)
Trilaterate three circles, each given as a (2-D) center and a radius. |
|
|