-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathTSVector2D.cpp
36 lines (25 loc) · 846 Bytes
/
TSVector2D.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// This file is part of the Terathon Math Library, by Eric Lengyel.
// Copyright 1999-2024, Terathon Software LLC
//
// This software is distributed under the MIT License.
// Separate proprietary licenses are available from Terathon Software.
//
#include "TSVector2D.h"
using namespace Terathon;
const ConstVector2D Vector2D::zero = {0.0F, 0.0F};
const ConstPoint2D Origin2D::origin = {0.0F, 0.0F};
const Origin2D Point2D::origin = {};
const ConstVector2D Vector2D::x_unit = {1.0F, 0.0F};
const ConstVector2D Vector2D::y_unit = {0.0F, 1.0F};
const ConstVector2D Vector2D::minus_x_unit = {-1.0F, 0.0F};
const ConstVector2D Vector2D::minus_y_unit = {0.0F, -1.0F};
Vector2D& Vector2D::Rotate(float angle)
{
Vector2D t = CosSin(angle);
float nx = t.x * x - t.y * y;
float ny = t.y * x + t.x * y;
x = nx;
y = ny;
return (*this);
}