This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim:encoding=utf-8:ts=2:sw=2:expandtab | |
| from AppStruct.Util import * | |
| from AppStruct.Web.Util import * | |
| import AppStruct | |
| import AppStruct.Util | |
| import AppStruct.Web.Util | |
| import FileStruct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for x in range(-400,400,100): | |
| for y in range(-400,400,100): | |
| box(x,y,80,45) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SIZE_X = 20 | |
| SIZE_Y = 20 | |
| TOP_Z = 0.750 | |
| CUTTER_DIAMETER = 0.750 | |
| #This is just some misc setup stuff | |
| from decimal import Decimal | |
| def drange(start, stop, step): | |
| value = Decimal(start) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import tty | |
| import termios | |
| import os | |
| s = os.get_terminal_size() | |
| ROWS = s.lines | |
| COLS = s.columns | |
| print('\n'*ROWS) |
OlderNewer