- This wiki is out of date, use the continuation of this wiki instead
Put
From FenixWiki
Contents |
[edit] Definition
INT put ( <INT fileID> , <INT graphID> , <INT x> , <INT y> )
Draws (blits) a graph onto the background.
For more advanced blitting, see:
- xput()
- map_put()
- map_xput()
- map_xputnp()
[edit] Parameters
| INT fileID | - The file that holds the graph. |
| INT graphID | - The graph to draw with. |
| INT x | - Where on the background's x-axis to put the graph. |
| INT y | - Where on the background's y-axis to put the graph. |
[edit] Returns
INT : true
[edit] Notes
The x and y parameters denote where to draw the graph, that is, where the center of the to be drawn graph will be.
[edit] Errors
| Unsupported color depth | - The origin graph's color depth is greater than the destination graph's. |
[edit] Example
Program a_map_is_born;
Private
int map;
Begin
// Create a new graph of size 100x100 and color depth of 8bit
map = new_map(100,100,8);
// Clear the map red
map_clear(0,map,rgb(255,0,0));
// Put it in the center of the screen
put(0,map,160,100);
Loop
frame;
End
End
Used in example: new_map(), map_clear()
This will result in something like:
| Screen Functions | |
| • Clear_screen() • Get_screen() • Put() • Put_screen() • Xput() • | |
