I should have commit when I knew what changes I made.

This commit is contained in:
2019-08-21 20:12:59 -04:00
parent 05ffe20bb4
commit 1e1a33f3f9
23 changed files with 820 additions and 175 deletions
@@ -0,0 +1,51 @@
#ifndef _CINSIDE_HPP_
#define _CINSIDE_HPP_
/*** SDL Header Files ***/
#include <SDL.h>
/*** DLL Header File ***/
#include "dllExport.h"
/*** Custom Header File ***/
#include "Vector/Vector2.hpp"
#include "iVector/iVector2.hpp"
#include "Vector/Vector4.hpp"
#include "iVector/iVector4.hpp"
namespace MathEngine {
class EXPORT_FROM_MYDLL cInside
{
private:
cInside();
~cInside();
public:
/// Functions
/* returns the Vector2 were a over laps b */
static const Vector2 Inside(const Vector4& a, const Vector4& b);
/* returns the Vector2 were a over laps b */
static const Vector2 Inside(const SDL_Rect& a, const Vector4& b);
/* returns the Vector2 were a over laps b */
static const Vector2 Inside(const Vector4& a, const SDL_Rect& b);
/* returns true if xy are inside SDL_Rect */
static const bool isInside(const signed long int x, const signed long int y, const SDL_Rect& inside);
/* returns true if xy are inside iVector4 */
static const bool isInside(const signed long int x, const signed long int y, const iVector4& inside);
/* returns the iVector2 were a over laps b */
static const iVector2 Inside(const SDL_Rect& a, const SDL_Rect& b);
/* returns the iVector2 were a over laps b */
static const iVector2 Inside(const iVector4& a, const iVector4& b);
/* returns the iVector2 were a over laps b */
static const iVector2 Inside(const SDL_Rect& a, const iVector4& b);
/* returns the iVector2 were a over laps b */
static const iVector2 Inside(const iVector4& a, const SDL_Rect& b);
static const Vector2 Inside(const iVector4& a, const Vector4& b);
static const Vector2 Inside(const Vector4& a, const iVector4& b);
};/// END CLASS DEFINITION cInside
}/// END NAMESPACE DEFINITION MathEngine
#endif/// END IFNDEF _CINSIDE_HPP_