RectangleCharacteristicPoints
Computes rectangle's characteristic points.
Syntax
C++
Python
def RectangleCharacteristicPoints( inRectangle: Rectangle2D, /, *, outTopLeft: Point2D | None = None, outTopCenter: Point2D | None = None, outTopRight: Point2D | None = None, outMiddleLeft: Point2D | None = None, outMiddleCenter: Point2D | None = None, outMiddleRight: Point2D | None = None, outBottomLeft: Point2D | None = None, outBottomCenter: Point2D | None = None, outBottomRight: Point2D | None = None ) -> outCorners: list[Point2D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inRectangle | Rectangle2D | ||
![]() |
outTopLeft | Point2D | None | None | |
![]() |
outTopCenter | Point2D | None | None | |
![]() |
outTopRight | Point2D | None | None | |
![]() |
outMiddleLeft | Point2D | None | None | |
![]() |
outMiddleCenter | Point2D | None | None | |
![]() |
outMiddleRight | Point2D | None | None | |
![]() |
outBottomLeft | Point2D | None | None | |
![]() |
outBottomCenter | Point2D | None | None | |
![]() |
outBottomRight | Point2D | None | None | |
![]() |
outCorners | list[Point2D] |


