RectangleCorners
Computes the four corner points of a rectangle.
Syntax
C++
Python
def RectangleCorners(
inRectangle: Rectangle2D,
/
)
-> (
outTopLeft: Point2D,
outTopRight: Point2D,
outBottomRight: Point2D,
outBottomLeft: Point2D
)
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inRectangle | Rectangle2D | ||
![]() |
outTopLeft | Point2D | ||
![]() |
outTopRight | Point2D | ||
![]() |
outBottomRight | Point2D | ||
![]() |
outBottomLeft | Point2D |


