|
oevislib_net
0.14.3.0
|
Functions | |
| static Region | oevislib_net.Region.operator& (Region inRegion1, Region inRegion2) |
| Bitwise AND operator. | |
| static Region | oevislib_net.Region.operator| (Region inRegion1, Region inRegion2) |
| Bitwise OR operator. | |
| static Region | oevislib_net.Region.operator- (Region inRegion1, Region inRegion2) |
| Difference operator. | |
| static Region | oevislib_net.Region.operator^ (Region inRegion1, Region inRegion2) |
| Bitwise XOR operator. | |
| static Region | oevislib_net.Region.Intersect (Region inRegion1, Region inRegion2) |
| Computes the intersection between two regions. | |
| static Region | oevislib_net.Region.Intersect (Array< Region > inRegions) |
| Computes the intersection between multiple regions. | |
| static Region | oevislib_net.Region.Combine (Region inRegion1, Region inRegion2) |
| Computes the union between two regions. | |
| static Region | oevislib_net.Region.Combine (Array< Region > inRegions) |
| Computes the union between multiple regions. | |
| static Region | oevislib_net.Region.Subtract (Region inRegion1, Region inRegion2) |
| Computes the difference between the provided regions. | |
| static Region | oevislib_net.Region.Subtract (Array< Region > inRegions) |
| Computes the subtraction between multiple regions. | |
| static Region | oevislib_net.Region.AbsDifference (Region inRegion1, Region inRegion2) |
| Computes the exclusive disjunction between two regions. | |
| static Region | oevislib_net.Region.AbsDifference (Array< Region > inRegions) |
| Computes the absolute difference between multiple regions. | |
Computes the absolute difference between multiple regions.
| inRegions | Array containing the regions on which the absolute difference is computed. |
Computes the exclusive disjunction between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Computes the union between multiple regions.
| inRegions | Array containing the regions on which the union is computed. |
Computes the union between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Computes the intersection between multiple regions.
If the input array is empty, the function return an empty region with frame (0, 0).
| inRegions | Array containing the regions on which the intersection is computed. |
Computes the intersection between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Bitwise AND operator.
It performs the intersection between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Difference operator.
It performs the difference between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Bitwise XOR operator.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Bitwise OR operator.
It performs the union between two regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |
Computes the subtraction between multiple regions.
All the regions from the second to the last are subtracted from the first one contained in the array.
| inRegions | Array containing the regions on which the subtraction is computed. |
Computes the difference between the provided regions.
| inRegion1 | First region. |
| inRegion2 | Second region. |