- This wiki is out of date, use the continuation of this wiki instead
Size x
From FenixWiki
(Difference between revisions)
Revision as of 11:36, 23 April 2007 (edit) Woody (Talk | contribs) ← Previous diff |
Revision as of 13:37, 1 May 2007 (edit) (undo) Sandman (Talk | contribs) Next diff → |
||
Line 1: | Line 1: | ||
+ | [[category:variables]] | ||
+ | [[category:local variables]] | ||
+ | |||
== Definition == | == Definition == | ||
+ | '''INT''' size_x | ||
- | + | Size_x is a predefined [[local variable]] that can be used to stretch or compress a graphic along its horizontal axis. It is measured in pixels. | |
== Notes == | == Notes == | ||
Line 7: | Line 11: | ||
== Example == | == Example == | ||
- | |||
To make the [[graphic]] of a [[process]] continually stretch horizontally: | To make the [[graphic]] of a [[process]] continually stretch horizontally: | ||
<pre> | <pre> | ||
Line 21: | Line 24: | ||
End | End | ||
</pre> | </pre> | ||
- | |||
- | [[category:predefined variables]] | ||
- | [[category:local variables]] |
Revision as of 13:37, 1 May 2007
Definition
INT size_x
Size_x is a predefined local variable that can be used to stretch or compress a graphic along its horizontal axis. It is measured in pixels.
Notes
See also size_y.
Example
To make the graphic of a process continually stretch horizontally:
Process stretch_graphic() Begin graph = load_png("image.png"); //load the graphic and assign it to the graph variable x = 100; //Position the graphic 100 pixels y = 100; //from the top and left of the screen Loop size_x += 1; //increase the width of the graphic by 1 pixel each frame. frame; End End