directory name changed

This commit is contained in:
2026-02-09 01:57:04 +01:00
Unverified
parent afc9db7a14
commit 0c562e646f
8 changed files with 1 additions and 0 deletions

14
3d_renderer/vertex.py Normal file
View File

@@ -0,0 +1,14 @@
import numpy as np
class Vertex:
x: int
y: int
z: int
def __init__(self, x: int, y: int, z: int):
self.x = x
self.y = y
self.z = z
def to_matrix(self) -> np.matrix:
return np.matrix([self.x, self.y, self.z])