Can you flip an image x or y?
BlitzMax Forums/BlitzMax Beginners Area/Can you flip an image x or y?| 
 | ||
| Is there a command to flip your image  x or y? Can't seem to find one in the manual. | 
| 
 | ||
| Hiya Use -1 in the SetScale command? | 
| 
 | ||
| I see. Thats not mentioned in the manual. How would you scale and also flip it horizontally? | 
| 
 | ||
| Any negative value will flip the image. You need to pick a scale, and negate that value. If you want your image scaled down to half its size, and flipped only on the vertical axis for example, it would be SetScale( 0.5, -0.5 ). | 
| 
 | ||
| ok. Thanks Kry. |