Skip to content

Commit aa694c5

Browse files
committed
pep8
1 parent dc0a77e commit aa694c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demosys/geometry/cube.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def cube(width, height, depth, center=(0.0, 0.0, 0.0), normals=True, uvs=True) -
1616
:return: VAO representing the cube
1717
"""
1818
width, height, depth = width / 2.0, height / 2.0, depth / 2.0
19-
19+
2020
pos = numpy.array([
2121
center[0] + width, center[1] - height, center[2] + depth,
2222
center[0] + width, center[1] + height, center[2] + depth,

0 commit comments

Comments
 (0)