9 #include <SFML/Graphics/Color.hpp> 10 #include <SFML/Graphics/Drawable.hpp> 11 #include <SFML/Graphics/RenderTarget.hpp> 12 #include <SFML/Graphics/Shape.hpp> 13 #include <SFML/Graphics/Transformable.hpp> 15 #include <NasNas/core/data/Rect.hpp> 25 void setRadius(
const sf::Vector2f& radius) ;
27 auto getRadius()
const ->
const sf::Vector2f&;
29 void setPointCount(std::size_t point_count);
31 auto getPointCount()
const -> std::size_t
override;
33 auto getPoint(std::size_t index)
const -> sf::Vector2f
override;
36 std::size_t m_point_count = 30;
37 sf::Vector2f m_radius;
40 class LineShape :
public sf::Drawable,
public sf::Transformable {
45 auto operator==(
const Point& p1)
const -> bool;
50 void resize(
size_t size);
52 void addPoint(
float x,
float y,
const std::optional<sf::Color>& color=std::nullopt);
53 void addPoint(
const sf::Vector2f& position,
const std::optional<sf::Color>& color=std::nullopt);
54 void removePoint(
unsigned index);
56 void setPoint(
unsigned index,
float x,
float y);
57 void setPoint(
unsigned index,
const sf::Vector2f& position);
58 auto getPoint(
unsigned index)
const ->
const sf::Vector2f&;
60 void setColor(
const sf::Color& color);
61 auto getColor()
const ->
const sf::Color&;
63 void setColor(
unsigned index,
const sf::Color& color);
64 auto getColor(
unsigned index)
const ->
const sf::Color&;
66 void setThickness(
float thickness);
67 auto getThickness()
const -> float;
69 void setThickness(
unsigned index,
float thickness);
70 auto getThickness(
unsigned index)
const -> float;
72 void setOutlineThickness(
float thickness);
73 auto getOutlineThickness()
const -> float;
75 void setOutlineColor(
const sf::Color& color);
76 auto getOutlineColor()
const ->
const sf::Color&;
78 auto getPointCount()
const -> std::size_t;
80 auto getLocalBounds()
const -> sf::FloatRect;
85 void update(
unsigned index);
86 void draw(sf::RenderTarget& target, sf::RenderStates states)
const override;
87 sf::Color m_color=sf::Color::White;
88 sf::Color m_outline_color=sf::Color::Black;
89 float m_thickness = 1.f;
90 float m_outline_thickness = 0.f;
91 std::vector<Point> m_points;
92 sf::VertexArray m_shape_verts;
93 sf::VertexArray m_outline_verts;