Skip to content

Instantly share code, notes, and snippets.

@rlieberman
Created May 11, 2015 20:32
Show Gist options
  • Save rlieberman/a38b091f43530f3741d9 to your computer and use it in GitHub Desktop.
Save rlieberman/a38b091f43530f3741d9 to your computer and use it in GitHub Desktop.
Main script to create complex shape outputs with just a few lines of code!
#import functions from my module shapeshift
from shapeshift import sawToothLeft, sawToothRight, diamondChain, hourGlass, checkerBoard
#create the different shapes using my module
diamondChain(3, 6)
sawToothLeft(3,8)
sawToothRight(3,8)
hourGlass(10, 6)
for i in range(5):
checkerBoard(6, 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment