Created
June 28, 2017 10:46
-
-
Save ShashkovS/1b30933863a9d2747cef5bb552b10066 to your computer and use it in GitHub Desktop.
Пример того, как можно делать запись вектороного произведения точек в виде cp[v, w], а не cp(v, w)
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
# Пример того, как можно делать запись вектороного произведения точек в виде cp[v, w], а не cp(v, w) | |
class Point: | |
"""Класс Точка""" | |
__slots__ = ['x', 'y'] | |
def __init__(self, x=0, y=0): | |
self.x = x | |
self.y = y | |
def __sub__(v, w): | |
return Point(v.x - w.x, v.y - w.y) | |
def __repr__(self): | |
return f'Point({self.x}, {self.y})' | |
def __str__(self): | |
return f'({self.x}, {self.y})' | |
def dp(v, w): | |
"""Dot product — скалярное произведение""" | |
return v.x * w.x + v.y * w.y | |
class _CrossProductHelper: | |
"""Специальный класс, который позволит обрабатывать cp[key]""" | |
@staticmethod # Ибо самого объекта класса никому не нужно | |
def __getitem__(key): # key в данном случае — это кортеж из пары точек | |
v, w = key | |
return v.x * w.x - v.y * w.y | |
cp = _CrossProductHelper() | |
# Берём две точки | |
v = Point(1, 1) | |
w = Point(1, -1) | |
print('Dot (scalar) product of', v, 'and', w, 'is', dp(v, w)) | |
print('Cross product of', v, 'and', w, 'is', cp[v, w]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment