-
Notifications
You must be signed in to change notification settings - Fork 0
Rectangle_in_circle
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Checks for an intersection of the given source rectangle with the given destination circle.
| Parameter | Data Type | Description |
|---|---|---|
| sx1 | double | left coordinate of the source rectangle |
| sy1 | double | top coordinate of the source rectangle |
| sx2 | double | right coordinate of the source rectangle |
| sy2 | double | bottom coordinate of the source rectangle |
| x | double | x coordinate of the circle center |
| y | double | y coordinate of the circle center |
| rad | double | radius of the circle |
integer: Returns the intersection of the shapes, 0 for none, 1 for encompassed, and 2 for overlapping.
// demonstrates checking the intersection of a rectangle with a circle
NOTOC
Category:Function:Real
This is number 1