Advertisement
CaptainLepidus

Canvas

Mar 5th, 2012
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var canvas = document.getElementById("canvas");  
  2. if (canvas.getContext) {  
  3. var ctx = canvas.getContext("2d");  
  4. ctx.fillStyle = "rgb(200,0,0)";  
  5. ctx.fillRect (user['x']-5, user['y']-5, user['x']+5, user['y']+5);  
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement