Advertisement
jezzye13

Buas tut Part 2

Nov 25th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.79 KB | None | 0 0
  1. //c
  2. screen->Line( 0, 120, 80, 120, 0xff0000 );
  3. screen->Line( 0, 360, 80, 360,  0xff0000 );
  4. screen->Line( 0, 120, 0, 360, 0xff0000 );
  5.  
  6. //o
  7. screen->Line( 240, 120, 320, 180, 0x00ff00 );
  8. screen->Line( 320, 180, 320, 300, 0x00ff00 );
  9. screen->Line( 320, 300, 240, 360, 0x00ff00 );
  10. screen->Line( 240, 360, 160, 300, 0x00ff00 );
  11. screen->Line( 160, 300, 160, 180, 0x00ff00 );
  12. screen->Line( 160, 180, 240, 120, 0x00ff00 );
  13.  
  14. //d
  15. screen->Line( 400, 120, 480, 180, 0x0000ff );
  16. screen->Line( 480, 180, 480, 300, 0x0000ff );
  17. screen->Line( 480, 300, 400, 360, 0x0000ff );
  18. screen->Line( 400, 360, 400, 120, 0x0000ff );
  19.  
  20. //e
  21. screen->Line( 560, 120, 640, 120, 0xffff00 );
  22. screen->Line( 560, 240, 640, 240, 0xffff00 );
  23. screen->Line( 560, 360, 640, 360, 0xffff00 );
  24. screen->Line( 560, 120, 560, 360, 0xffff00 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement