# filename: sph.draw
# author: Marvin Simkin
# date: 2004-03-15
# purpose: payroll plan analysis
# paid 9.45 per hour for first 40 hours
color = 1.0 0.6 0.0 # orange
polygon: 0 0 0, 40 0 0, 40 0 378
polygon: 0 0 0, 40 0 378, 40 5600 378
polygon: 0 0 0, 40 5600 0, 40 0 0
# paid time and a half after 40 hours
color = 1.0 0.0 0.0 # red
polygon: 40 0 0, 100 0 0, 100 0 1228.5, 40 0 378
polygon: 40 0 378, 100 0 1228.5, 100 14000 1228.5, 40 5600 378
polygon: 100 0 0, 100 0 1228.5, 100 14000 1228.5, 100 14000 0
polygon: 40 0 0, 100 0 0, 100 14000 0, 40 5600 0
# commission plan 0.0675 of sales
color = 0.0 1.0 0.0 # green
polygon: 0 0 0, 40 5600 378, 40 20000 1350, 0 20000 1350
polygon: 0 0 0, 0 20000 1350, 0 20000 0
polygon: 0 20000 0, 40 20000 0, 40 20000 1350, 0 20000 1350
polygon: 0 0 0, 40 5600 0, 40 20000 0, 0 20000 0
# commission plan plus overtime
color = 0.0 0.0 1.0 # blue
polygon: 40 5600 378, 100 14000 1228.5, 100 20000 1633.5, 40 20000 1350
polygon: 100 14000 1228.5, 100 14000 0, 100 20000 0, 100 20000 1633.5
polygon: 100 20000 1633.5, 100 20000 0, 40 20000 0, 40 20000 1350
polygon: 40 5600 0, 100 14000 0, 100 20000 0, 40 20000 0
# backstop
color = 0 0 0 # black
polygon: 0 20015 0, 101 20015 0, 101 20015 2000, 0 20015 2000
polygon: 101 0 0, 101 0 2000, 101 20015 2000, 101 20015 0
# some invisible points to help things center properly
color = 0 0 0 # black
point: -10 -2000 -200, 110 -2000 -200
point: -10 22000 -200, 110 22000 -200
point: -10 -2000 2200, 110 -2000 2200
point: -10 22000 2200, 110 22000 2200
# captions
color=0.0 0.8 1.0
fontheight=165
fontjust=LEFT
text2:100 -4800 1000,Total Pay
fontjust=RIGHT
text2:-10 20000 1000,Total Pay
fontjust=CENTER
text2:-30 10000 -200,Sales
text2:50 -6000 -200,Hours Worked
|