- This wiki is out of date, use the continuation of this wiki instead
Map put pixel
From FenixWiki
(Difference between revisions)
Revision as of 14:35, 22 April 2007 (edit) Woody (Talk | contribs) ← Previous diff |
Revision as of 15:10, 22 April 2007 (edit) (undo) Woody (Talk | contribs) Next diff → |
||
Line 1: | Line 1: | ||
[[Category:functions]] | [[Category:functions]] | ||
+ | [[Category:maps]] | ||
==Definition== | ==Definition== |
Revision as of 15:10, 22 April 2007
Contents |
Definition
INT map_put_pixel ( <INT file> , <INT graph> , <INT x> , <INT y> , <INT color> )
Draws a single colored pixel on a graph.
Parameters
INT file | - The FPG that holds the graph, or 0 for no FPG. |
INT graph | - The graph to draw on. |
INT x | - Where on the graph's x-axis to put the pixel. |
INT y | - Where on the graph's y-axis to put the pixel. |
INT color | - What color to draw. |
Returns
INT : Returns 1 if successful and 0 if failed.
Example
Program awesome; Begin set_mode(640,480,16); graph=new_map(100,100,16); map_clear(0,graph,rgb(255,0,0)); //makes the graphic a red square x=320; y=240; map_put_pixel(0,graph,50,50,rgb(255,255,255)); //puts a single white pixel in the center of the graphic Loop frame; End End