RectsOverlap, RoundedRect and RoundedRectDrawable

Holzchopf

Well-known member
3rd Party Module Dev
Tutorial Author
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:
  • 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.
 

Attachments

  • holzchopf.roundedrect-20180213.zip
    8.6 KB · Views: 332
Back
Top Bottom