chickadee » sdl2 » rect-sub-point

rect-sub-point rect pointprocedure
rect-sub-point! rect point #!optional destprocedure

Efficiently move rect by subtracting point from rect's X and Y values. The results will be clamped to the range -2147483648 to 2147483647.

If the dx and dy values are already held as separate variables, it is more efficient and convenient to negate the values and use rect-move, instead of creating an sdl2:point.

  • rect-sub-point returns a new managed sdl2:rect.
  • rect-sub-point! modifies and returns dest. If dest is omitted, rect is modified and returned.

Requires sdl2 egg 0.2.0 or higher.