Advertisement
Guest User

Untitled

a guest
May 28th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #A
  2. if lineColor == getPixel(A, 0, 0):
  3. for x in range (0, aW):
  4. for y in range(0, h):
  5. altX = px + x
  6. if altX >= limitW:
  7. altX = limitW-1
  8.  
  9. #B
  10. if lineColor == getPixel(B, 0, 0):
  11. for x in range (0, BW):
  12. for y in range(0, h):
  13. altX = px + x
  14. if altX >= limitW:
  15. altX = limitW-1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement