Guest User

Untitled

a guest
Sep 20th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /client/verb/call_one_of_these()
  2. switch(input("What do you want to do?") as null|anything in list("Identity","Rotation","Brightness","Contrast","Saturation"))
  3. if("Rotation")
  4. color = color_rotation(input("How many degrees?") as num)
  5. if("Brightness")
  6. color = color_brightness(input("How bright?") as num)
  7. if("Contrast")
  8. color = color_contrast(input("How much contrast?") as num)
  9. if("Saturation")
  10. color = color_saturation(input("How saturated?") as num)
  11. else
  12. color = null
Advertisement
Add Comment
Please, Sign In to add comment