NasNas
An intuitive and beginner friendly 2D game framework for C++
Transformable.hpp
1 // Created by Modar Nasser on 20/04/2021.
2 
3 #pragma once
4 
5 #include <SFML/Graphics/Transformable.hpp>
6 
7 namespace ns {
8  class Transformable : sf::Transformable {
9  friend class SpriteBatch;
10  friend class Sprite;
11  friend class Scene;
12  public:
13  void setPosition(float x, float y);
14  void setPosition(const sf::Vector2f& position);
15 
16  void setRotation(float angle);
17 
18  void setScale(float factorX, float factorY);
19  void setScale(const sf::Vector2f& factors);
20 
21  void setOrigin(float x, float y);
22  void setOrigin(const sf::Vector2f& origin);
23 
24  void move(float offsetX, float offsetY);
25  void move(const sf::Vector2f& offset);
26 
27  void rotate(float angle);
28 
29  void scale(float factorX, float factorY);
30  void scale(const sf::Vector2f& factor);
31 
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;
38 
39  private:
40  mutable bool changed = true;
41  };
42 }
43 
auto angle(const sf::Vector2< T > &vector) -> float
Returns the clockwise positive angle of a vector.
Definition: Maths.hpp:85