From edc09e5c618c4527ac68579fab9c9e30ff4b7679 Mon Sep 17 00:00:00 2001 From: facat Date: Fri, 4 Jun 2021 11:50:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BA=86=E5=AF=B9=E4=BB=BB?= =?UTF-8?q?=E6=84=8F=E5=AF=BC=E7=BA=BF=E7=9A=84=E6=97=8B=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: facat --- graphic.py | 0 type3d.py | 5 +++++ 2 files changed, 5 insertions(+) create mode 100644 graphic.py create mode 100644 type3d.py diff --git a/graphic.py b/graphic.py new file mode 100644 index 0000000..e69de29 diff --git a/type3d.py b/type3d.py new file mode 100644 index 0000000..fbbab4c --- /dev/null +++ b/type3d.py @@ -0,0 +1,5 @@ +class Vector3D: + def __init__(self, x, y, z): + self.x = x + self.y = y + self.z = z