Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. GraphicsWindow.Width = 1920
  2. GraphicsWindow.Height = 1080
  3. GraphicsWindow.BackgroundColor = "Brown"
  4. GraphicsWindow.PenColor = "magenta"
  5. GraphicsWindow.DrawRectangle(100,100, 400,200)
  6. GraphicsWindow.PenColor = "black"
  7.  
  8. GraphicsWindow.BrushColor = "magenta"
  9. GraphicsWindow.FillRectangle(100,100, 400,200)
  10. GraphicsWindow.BrushColor = "black"
  11.  
  12. GraphicsWindow.DrawRectangle(130,120, 100,100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement