5 #include <SFML/Graphics/Transformable.hpp> 13 void setPosition(
float x,
float y);
14 void setPosition(
const sf::Vector2f& position);
16 void setRotation(
float angle);
18 void setScale(
float factorX,
float factorY);
19 void setScale(
const sf::Vector2f& factors);
21 void setOrigin(
float x,
float y);
22 void setOrigin(
const sf::Vector2f& origin);
24 void move(
float offsetX,
float offsetY);
25 void move(
const sf::Vector2f& offset);
27 void rotate(
float angle);
29 void scale(
float factorX,
float factorY);
30 void scale(
const sf::Vector2f& factor);
32 using sf::Transformable::getPosition;
33 using sf::Transformable::getRotation;
34 using sf::Transformable::getScale;
35 using sf::Transformable::getOrigin;
36 using sf::Transformable::getTransform;
37 using sf::Transformable::getInverseTransform;
40 mutable bool changed =
true;
auto angle(const sf::Vector2< T > &vector) -> float
Returns the clockwise positive angle of a vector.