Plot.htm 969 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html>
  2. <head>
  3. <title>Blitz3D Docs</title>
  4. <link rel=stylesheet href=../css/commands.css type=text/css>
  5. </head>
  6. <body>
  7. <h1>Plot x,y</h1>
  8. <h1>Parameters</h1>
  9. <table>
  10. <tr>
  11. <td>
  12. x= and number from zero to the width of the current graphics mode <br />
  13. y= and number from zero to the height of the current graphics mode
  14. </td>
  15. </tr>
  16. </table>
  17. <h1>Description</h1>
  18. <table>
  19. <tr>
  20. <td>
  21. Used to put a pixel on the screen defined by its x, y location in the current drawing color defined by the Color command
  22. </td>
  23. </tr>
  24. </table>
  25. <h1><a href=../2d_examples/Plot.bb>Example</a></h1>
  26. <table>
  27. <tr>
  28. <td>
  29. ;Set the color to green <br />
  30. Color 0,255,0 <br />
  31. <br />
  32. ;Draw a dot at location 100,200 with the color green <br />
  33. plot 100,200
  34. </td>
  35. </tr>
  36. </table>
  37. <br>
  38. <a target=_top href=../index.htm>Index</a><br>
  39. <br>
  40. Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=Plot&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
  41. </html>