logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tickit_rect_intersects - test if two rectangles intersect

Description

tickit_rect_intersects()  tests  whether  the  two  given rectangles intersect at all. It returns true if
       there is a non-empty rectangular region in common covered by  both  rectangles.  tickit_rect_intersect(3)
       can be used to obtain this intersection as well as performing the intersection test itself.

Name

       tickit_rect_intersects - test if two rectangles intersect

Return Value

tickit_rect_contains() returns a boolean value.

See Also

tickit_rect_init_sized(3),              tickit_rect_init_bounded(3),             tickit_rect_contains(3),
       tickit_rect_intersect(3), tickit_rect(7), tickit(7)

                                                                                       TICKIT_RECT_INTERSECTS(3)

Synopsis

#include<tickit.h>booltickit_rect_intersects(constTickitRect*a,constTickitRect*b);

       Link with -ltickit.

See Also