123456789101112131415161718192021222324252627282930313233343536 |
- .. _func_graphics_max2d_imagescollide2:
- ==============
- ImagesCollide2
- ==============
- ImagesCollide2 -
- Description
- ===========
- .. code-block:: blitzmax
- ImagesCollide2(image1:TImage,x1,y1,frame1,rot1#,scalex1#,scaley1#,image2:TImage,x2,y2,frame2,rot2#,scalex2#,scaley2#)
- Tests if two images with arbitrary Rotation and Scales collide
- #ImagesCollide2 uses the specified Rotation and Scale paramteters
- to calculate at a pixel level if the two images collide (overlap).
- Parameters
- ==========
- Return Values
- =============
- True if any pixels of the two images specified at the given location overlap.
- Examples
- ========
- See Also
- ========
|