Change cube face order

This commit is contained in:
Grant Sanderson 2020-06-07 12:24:14 -07:00
parent 3a111cf3af
commit 4a3e4df2bd

View file

@ -158,7 +158,7 @@ class Cube(SGroup):
}
def init_points(self):
for vect in IN, OUT, LEFT, RIGHT, UP, DOWN:
for vect in [OUT, RIGHT, UP, LEFT, DOWN, IN]:
face = Square3D(resolution=self.square_resolution)
face.shift(OUT)
face.apply_matrix(z_to_vector(vect))