SFML community forums

General => Feature requests => Topic started by: gsaurus on July 10, 2011, 11:46:42 am

Title: Drawable::Flip / Negative scale
Post by: gsaurus on July 10, 2011, 11:46:42 am
Laurent, have you found why you restricted scaling to positive values already?

Code: [Select]
if (factor > 0)
could have been:
Code: [Select]
if (factor != 0)
That or FlipX/FlipY methods on sf::Drawable

Sorry to ask again but passed a long time :wink:
Title: Drawable::Flip / Negative scale
Post by: Laurent on July 10, 2011, 12:47:13 pm
This restriction will be removed soon.