a2adf7ca32
Signed-off-by: Michael Dirks <michael.fabian.dirks@gmail.com>
74 lines
2.0 KiB
C
74 lines
2.0 KiB
C
// BlitzUtility - Expanding the normal Blitz functionality.
|
|
// Copyright (C) 2015 Project Kube (Michael Fabian Dirks)
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
#include "dllmain.h"
|
|
#ifndef _USE_MATH_DEFINES
|
|
#define _USE_MATH_DEFINES
|
|
#include <math.h>
|
|
#undef _USE_MATH_DEFINES
|
|
#endif
|
|
|
|
struct Vector2 {
|
|
union {
|
|
float X;
|
|
char Xc[4];
|
|
};
|
|
union {
|
|
float Y;
|
|
char Yc[4];
|
|
};
|
|
|
|
void set(const float &o);
|
|
void set(const float &x, const float &y);
|
|
void set(const Vector2 &o);
|
|
|
|
void add(const float &o);
|
|
void add(const float &x, const float &y);
|
|
void add(const Vector2 &o);
|
|
|
|
void sub(const float &o);
|
|
void sub(const float &x, const float &y);
|
|
void sub(const Vector2 &o);
|
|
|
|
void mul(const float &o);
|
|
void mul(const float &x, const float &y);
|
|
void mul(const Vector2 &o);
|
|
|
|
void div(const float &o);
|
|
void div(const float &x, const float &y);
|
|
void div(const Vector2 &o);
|
|
|
|
float length();
|
|
float distance(const float &x, const float &y);
|
|
float distance(const Vector2 &o);
|
|
|
|
float dot(const float &x, const float &y);
|
|
float dot(const Vector2 &o);
|
|
void normalize();
|
|
|
|
void rotate(const float rotation);
|
|
void rotateAround(const float &x, const float &y, const float &rotation);
|
|
void rotateAround(const Vector2 &o, const float &rotation);
|
|
float deltaRotation();
|
|
float deltaRotation(const float &x, const float &y);
|
|
float deltaRotation(const Vector2 &o);
|
|
|
|
char* serialize();
|
|
void deserialize(char* o);
|
|
};
|
|
|