Hello!:) I am quite new to SFML, I've been working with it for a few weeks already, and I must say it is a great library, thank you Laurent.
However, I couldn't find a solution to this problem:
sf::Shape Line = sf::Shape::Line(100, 100, 100, 200, 1, sf::Color::White);
Line.SetPointPosition(0, sf::Vector2f(100, 100));
Line.SetPointPosition(1, sf::Vector2f(100, 400));
Setting the points of a line doesn't work as supposed, or maybe I'm just doing it wrong?