lib_math.py

Created by valmontechno

Created on March 08, 2024

214 Bytes


class Vector2:
    def __init__(self, x, y):
        self.x = x
        self.y = y

class Triangle:
    def __init__(self, p1, p2, p3):
        self.p1 = p1
        self.p2 = p2
        self.p3 = p3