Created
October 4, 2022 19:36
-
-
Save Demonstrandum/0472833113d207686fd522bbb23cdb6c to your computer and use it in GitHub Desktop.
Vector class from Python tuple.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Vec(tuple): | |
def __new__(cls, x, y=None, z=None): | |
if y is None: | |
return super(Vec, cls).__new__(cls, x) | |
if z is None: | |
return super(Vec, cls).__new__(cls, (x, y)) | |
return super(Vec, cls).__new__(cls, (x, y, z)) | |
def dot(self, other): | |
return sum(x0 * x1 for (x0, x1) in zip(self, other)) | |
def __add__(self, other): | |
return Vec(x0 + x1 for (x0, x1) in zip(self, other)) | |
def __sub__(self, other): | |
return Vec(x0 - x1 for (x0, x1) in zip(self, other)) | |
def __mul__(self, other): | |
if isinstance(other, (int, float)): | |
return Vec(other * x0 for x0 in self) | |
return Vec(x0 * x1 for (x0, x1) in zip(self, other)) | |
def __rmul__(self, other): | |
return self.__mul__(other) | |
v = Vec(1, 2) + Vec(2, 1) | |
v += Vec(0, 1) | |
v *= 3 | |
print(2 * v, v.dot(v)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment