sknano.core.geometric_regions.Ellipsoid¶
-
class
sknano.core.geometric_regions.
Ellipsoid
(center=None, rx=1, ry=1, rz=1)[source][source]¶ Geometric3DRegion
for an ellipsoid.New in version 0.3.0.
Represents an axis-aligned ellipsoid centered at the point (cx,cy,cz) with semi-axes lengths rx,ry,rz.
Parameters: center : array_like or
Point
rx, ry, rz : float, optional
Notes
Ellipsoid
represents the axis-aligned ellipsoid:{{x,y,z}∈R3|(x−cxrx)2+(y−cyry)2+(z−czrz)2≤1}Calling
Ellipsoid
with no parameters is equivalent toEllipsoid
(center=[0, 0, 0], rx=1, ry=1, rz=1).Attributes
center
Ellipsoid
center point (cx,cy,cz).centroid
Alias for center
.fmtstr
Format string. measure
Alias for volume
, which is the measure of a 3D geometric region.rx
Length of semi-axis rx. ry
Length of semi-axis ry. rz
Length of semi-axis rz. volume
Ellipsoid
volume, V=43πrxryrz.Methods
center_centroid
()Center centroid
on origin.contains
(point)Test region membership of point in Ellipsoid
.rotate
([angle, axis, anchor_point, ...])Rotate GeometricRegion
points
andvectors
.todict
()Returns a dict
of theEllipsoid
constructor parameters.translate
(t[, fix_anchor_points])Translate GeometricRegion
points
andvectors
byVector
t.