2D (x,y) point structure - Integer More...
#include <point.h>
Public Member Functions | |
Point () | |
Point (int x, int y) | |
Point (const Pointx< int > &p) | |
Point (const Vec2< int > &p) | |
![]() | |
Pointx () | |
Pointx (int x, int y) | |
Pointx (const Pointx< int > &p) | |
Pointx (const Vec2< int > &p) | |
![]() | |
Vec2 () | |
Vec2 (const int &scalar) | |
Vec2 (const Vec3< int > ©) | |
Vec2 (const Vec4< int > ©) | |
Vec2 (const int &p1, const int &p2) | |
Vec2 (const int *array_xy) | |
Vec2 (const Vec2< double > ©) | |
Vec2 (const Vec2< float > ©) | |
Vec2 (const Vec2< int > ©) | |
int | angle (const Vec2< int > &vector) const |
Calculate the angle between this vector and an other vector. More... | |
int | angle_line (const Vec2< int > &point) const |
Calculate the angle of the line joining this point and other point. More... | |
int | angle_normed (const Vec2< int > &vector) const |
Calculate the angle between this vector and an other vector, where the vectors are unit vectors. More... | |
int | distance (const Vec2< int > &vector) const |
Calculate the distance between this vector and an other vector. More... | |
int | dot (const Vec2< int > &vector) const |
Dot products this vector with an other vector. More... | |
bool | is_equal (const Vec2< int > &other, int epsilon) const |
Returns true if equal within the bounds of an epsilon. More... | |
int | length () const |
Returns the length (magnitude) of this vector. More... | |
Vec2< int > & | normalize () |
Normalizes this vector. More... | |
bool | operator!= (const Vec2< int > &vector) const |
!= operator. More... | |
void | operator*= (const Vec2< int > &vector) |
*= operator. More... | |
void | operator*= (int value) |
*= operator. More... | |
void | operator+= (const Vec2< int > &vector) |
+= operator. More... | |
void | operator+= (int value) |
+= operator. More... | |
Vec2< int > | operator- () const |
| |
void | operator-= (const Vec2< int > &vector) |
-= operator. More... | |
void | operator-= (int value) |
-= operator. More... | |
void | operator/= (const Vec2< int > &vector) |
/= operator. More... | |
void | operator/= (int value) |
/= operator. More... | |
bool | operator< (const Vec2< int > &vector) const |
< operator. More... | |
Vec2< int > & | operator= (const Vec2< int > &vector) |
= operator. More... | |
bool | operator== (const Vec2< int > &vector) const |
== operator. More... | |
Vec2< int > & | rotate (const Vec2< int > &hotspot, int angle) |
Rotate this vector around another point. More... | |
Vec2< int > & | round () |
Rounds all components of this vector. More... | |
int | round_value (float value) const |
Rounds a value for the datatype. More... | |
Additional Inherited Members | |
![]() | |
typedef int | datatype |
![]() | |
static Pointx< int > | calc_origin (Origin origin, const Sizex< int > &size) |
Returns the anchor point for the origin within the dimensions of the size structure. More... | |
static int | dot (const Vec2< int > &vector_1, const Vec2< int > &vector_2) |
Dot products a vector with an other vector. More... | |
static bool | is_equal (const Vec2< int > &first, const Vec2< int > &second, int epsilon) |
Returns true if equal within the bounds of an epsilon. More... | |
static Vec2< int > | normalize (const Vec2< int > &vector) |
Normalizes a vector. More... | |
static Vec2< int > | rotate (const Vec2< int > &vector, const Vec2< int > &hotspot, int angle) |
Rotate a vector around another point. More... | |
static Vec2< int > | round (const Vec2< int > &vector) |
Rounds all components on a vector. More... | |
![]() | |
int | x |
int | y |
2D (x,y) point structure - Integer
|
inline |
|
inline |
|
inline |
|
inline |