arnikdehnavi commited on
Commit
88abea4
1 Parent(s): d641d62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import sys
6
 
7
  class Cube:
8
  def __init__(self):
9
- self.vertices = ((1,-1,-1),(1,1,-1),(-1,1,-1),(-1,-1,-1),(1,-1,1),(1,1,1),(-1,-1,1),(-1,1,1))
10
  self.edges = ((0,1),(0,3),(0,4),(1,2),(1,5),(2,3),(2,6),(3,7),(4,5),(4,7),(5,6),(6,7))
11
 
12
  def draw(self):
 
6
 
7
  class Cube:
8
  def __init__(self):
9
+ self.vertices = ((1.0,-1,-1),(1,1,-1),(-1,1,-1),(-1,-1,-1),(1,-1,1),(1,1,1),(-1,-1,1),(-1,1,1))
10
  self.edges = ((0,1),(0,3),(0,4),(1,2),(1,5),(2,3),(2,6),(3,7),(4,5),(4,7),(5,6),(6,7))
11
 
12
  def draw(self):