Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
neozhaoliang committed Feb 12, 2020
1 parent 03c7636 commit 1eb24c9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions paramsettings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
carWidth = 160
carHeight = 240
chessboardSize = 80
shiftWidth = 120
shiftHeight = 120
innerShiftWidth = 0
innerShiftHeight = 0
totalWidth = carWidth + 2 * chessboardSize + 2 * shiftWidth
totalHeight = carHeight + 2 * chessboardSize + 2 * shiftHeight

x1 = shiftWidth + chessboardSize + innerShiftWidth
x2 = totalWidth - x1
y1 = shiftHeight + chessboardSize + innerShiftHeight
y2 = totalHeight - y1

frontShape = (totalWidth, y1)
leftShape = (totalHeight, x1)

0 comments on commit 1eb24c9

Please sign in to comment.