OffsetRectBJ
- Parameters
r rectdx realdy real- comment
- patch
1.00
- Source
- Blizzard.j (raise an issue to discuss on Github or submit a PR)
- return type
rect- Source code
function OffsetRectBJ takes rect r, real dx, real dy returns rect return Rect( GetRectMinX(r) + dx, GetRectMinY(r) + dy, GetRectMaxX(r) + dx, GetRectMaxY(r) + dy ) endfunction