Rebol Programming/overlap?
USAGE:
editOVERLAP? f1 f2
DESCRIPTION:
editReturns TRUE if faces overlap each other.
OVERLAP? is a function value.
ARGUMENTS:
edit- f1 -- (Type: any)
- f2 -- (Type: any)
SOURCE CODE
editoverlap?: func [ "Returns TRUE if faces overlap each other." f1 f2 ][ found? all [ f1/offset/x < (f2/offset/x + f2/size/x) f1/offset/y < (f2/offset/y + f2/size/y) (f1/offset/x + f1/size/x) > f2/offset/x (f1/offset/y + f1/size/y) > f2/offset/y ] ]