Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arpruss committed Oct 6, 2015
1 parent 9df8d4f commit c27ed52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions raspberryjammod/mcpipy/sierpinski3d.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Code under the MIT license by Alexander Pruss
#
#
# Code under the MIT license by Alexander Pruss
#

from mc import *
import drawing
Expand Down Expand Up @@ -28,7 +28,7 @@ def drawTetrahedron(height, apex, block):
for point in bottom:
a = float(i)/height
triangle.append(((1-a)*apex[0]+a*point[0],apex[1]-i,(1-a)*apex[2]+a*point[2]))
d.face(triangle,block)
d.face(triangle,block)
return triangle

def average(a,b):
Expand Down

0 comments on commit c27ed52

Please sign in to comment.