sknano.core.geometric_regions.Rectangle¶
-
class
sknano.core.geometric_regions.Rectangle(pmin=None, pmax=None, xmin=0, ymin=0, xmax=1, ymax=1)[source][source]¶ Geometric2DRegionfor a rectangle.New in version 0.3.0.
Represents an axis-aligned bounded region from \(p_{\mathrm{min}}=(x_{\mathrm{min}},y_{\mathrm{min}})\) to \(p_{\mathrm{max}}=(x_{\mathrm{max}},y_{\mathrm{max}})\).
Parameters: pmin, pmax : array_like, optional
The minimum and maximum 2D point coordinates of the axis-aligned rectangle from pmin=[xmin, ymin] to pmax=[xmax, ymax].
xmin, ymin : float, optional
The minimum \((x, y)\) point of the axis-aligned rectangle.
xmax, ymax : float, optional
The maximum \((x, y)\) point of the axis-aligned rectangle.
Notes
Rectanglerepresents the region \(\left\{\{x, y\}|x_{\mathrm{min}}\le x\le x_{\mathrm{max}} \land y_{\mathrm{min}}\le y\le y_{\mathrm{max}}\right\}\)Calling
Rectanglewith no parameters is equivalent toRectangle(pmin=[0, 0], pmax=[1, 1]).Attributes
aDistance between \(x_{\mathrm{max}}-x_{\mathrm{min}}\). areaRectanglearea, \(A=ab\)bDistance between \(y_{\mathrm{max}}-y_{\mathrm{min}}\). centerAlias for centroid.centroidRectanglecentroid, \((c_x, c_y)\).fmtstrFormat string. measureAlias for area, which is the measure of a 2D geometric region.pmax2D Pointat (xmax,ymax).pmin2D Pointat (xmin,ymin).xmax\(x_{\mathrm{max}}\) coordinate. xmin\(x_{\mathrm{min}}\) coordinate. ymax\(y_{\mathrm{max}}\) coordinate. ymin\(y_{\mathrm{min}}\) coordinate. Methods
center_centroid()Center centroidon origin.contains(point)Test region membership of point in Rectangle.rotate([angle, axis, anchor_point, ...])Rotate GeometricRegionpointsandvectors.todict()Returns a dictof theRectangleconstructor parameters.translate(t[, fix_anchor_points])Translate GeometricRegionpointsandvectorsbyVectort.