forked from openPSTD/openPSTD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transforms2D.py
105 lines (90 loc) · 3.57 KB
/
transforms2D.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
########################################################################
# #
# This file is part of openPSTD. #
# #
# openPSTD is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# openPSTD 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 General Public License #
# along with openPSTD. If not, see <http://www.gnu.org/licenses/>. #
# #
########################################################################
__author__ = 'michiel'
import math
import numpy
import numpy as np
class Matrix:
def __init__(self, oldMatrix=None):
if oldMatrix is None:
self.M = np.eye(3,dtype=np.float64)
self.invM = np.eye(3,dtype=np.float64)
else:
self.M = list(oldMatrix.M)
self.invM = list(oldMatrix.invM)
@staticmethod
def translate(x, y=None):
if y is None: y = x
M = Matrix()
M.M = [[ 1, 0, x],
[ 0, 1, y],
[ 0, 0, 1]]
M.M = np.array(M.M, dtype=np.float64).T
M.invM = [[ 1, 0, -x],
[ 0, 1, -y],
[ 0, 0, 1]]
M.invM = np.array(M.invM, dtype=np.float64).T
return M
@staticmethod
def scale(x, y=None):
if y is None: y = x
M = Matrix()
M.M = [[ x, 0, 0],
[ 0, y, 0],
[ 0, 0, 1]]
M.M = np.array(M.M, dtype=np.float64).T
M.invM = [[ 1/x, 0, 0],
[ 0, 1/y, 0],
[ 0, 0, 1]]
M.invM = np.array(M.invM, dtype=np.float64).T
return M
@staticmethod
def rotate(theta):
cosT = math.cos(theta)
sinT = math.sin(theta)
M = Matrix()
M.M = numpy.array(
[[ cosT,-sinT, 0.0 ],
[ sinT, cosT, 0.0 ],
[ 0.0, 0.0, 1.0 ]], dtype=np.float64)
cosT = math.cos(-theta)
sinT = math.sin(-theta)
M.invM = numpy.array(
[[ cosT,-sinT, 0.0 ],
[ sinT, cosT, 0.0 ],
[ 0.0, 0.0, 1.0 ]], dtype=np.float64)
return M
def __mul__(self, other):
if type(other) is Matrix:
result = Matrix()
result.M[...] = np.dot(self.M, other.M)
result.invM[...] = np.dot(other.invM, self.invM)
return result
elif type(other) is list:
result = list(other)
result.append(1)
result = np.dot(np.array(result), self.M)
return result[:-1]
else:
raise TypeError("unsupported operand type(s) for *: 'Matrix' and '" + str(type(other)) + "'")
def invMultipleVector(self, v):
result = list(v)
result.append(1)
result = np.dot(np.array(result), self.invM)
return result[:-1]