- Joined
- Jul 31, 2017
- Messages
- 500
This time you get three modules for the price of one (you pay in clicks on the download button
):
holzchopf.rectsoverlap
Provides the RectsOverlap function that returns true when two given rectangles overlap.
holzchopf.roundedrect
Provides RoundedRect - a class for rectangles with rounded corners. The corner radii can be set individually but may not exceed half the width or height (whatever is smaller) of the rectangle. This restriction is simply to have made my work easier...
RoundedRects can not only be created, placed and shaped, they also come with handy collision detection functions:
holzchopf.roundedrectdrawable
Provides RoundedRectDrawable - an extension for RoundedRect that allows drawing of rounded rects in mojo2. Comes with an example.
holzchopf.rectsoverlap
Provides the RectsOverlap function that returns true when two given rectangles overlap.
holzchopf.roundedrect
Provides RoundedRect - a class for rectangles with rounded corners. The corner radii can be set individually but may not exceed half the width or height (whatever is smaller) of the rectangle. This restriction is simply to have made my work easier...
RoundedRects can not only be created, placed and shaped, they also come with handy collision detection functions:
- CollidesWith(pRect) to check if a rounded rect collides with another given rounded rect
- CollidesWithRect(pX, pY, pW, pH) to check if a rounded rect collides with a given rect (no roundings this time)
holzchopf.roundedrectdrawable
Provides RoundedRectDrawable - an extension for RoundedRect that allows drawing of rounded rects in mojo2. Comes with an example.