Hi !
This feature would not bring much but I feel like it would make sense to have the operators *= and /= between two vectors. Currently, we can do this:
sf::Vector2f v1(1.0, 2.0);
sf::Vector2f v2(1.0, 2.0);
v1 = v1 * v2;
but we can't do this
sf::Vector2f v1(1.0, 2.0);
sf::Vector2f v2(1.0, 2.0);
v1 *= v2;
Is there any reason for this ?
Thank you in advance.