Guest User

Untitled

a guest
Apr 23rd, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /**
  2. * Created by Tom Van Oosterwyck
  3. * Tom is de beste
  4. * Created on 8/12/11 at 11:23
  5. */
  6. var Color = {
  7. nR : 0,
  8. nG : 0,
  9. nB : 0,
  10. showColor: function() {
  11. var sRGB =
  12. "rgb("+this.nR
  13. + ", " + this.nG
  14. + ", " + this.nB+ ")";
  15. alert(sRGB);
  16. },
  17. setColor: function(rood, groen, blauw) {
  18. this.nR = rood;
  19. this.nG = groen;
  20. this.nB = blauw;
  21. },
  22. setHexColor: function(hex){
  23. hex = hex.substring(1);
  24. var hR = hex.substring(0,2);
  25. var hG = hex.substring(2,4);
  26. var hB = hex.substring(4,6);
  27. this.nR = parseInt(hR,16);
  28. this.nG = parseInt(hG,16);
  29. this.nB = parseInt(hB,16);
  30. }
  31. };
Add Comment
Please, Sign In to add comment