SFML community forums

Help => System => Topic started by: MODOKI on October 05, 2023, 10:00:44 pm

Title: namespace "sf" has no member "Vector2f"
Post by: MODOKI on October 05, 2023, 10:00:44 pm
The vector2f gives me error "namespace 'sf' nas no member 'Vector2f'" but that line is copy/paste from the header Vertex.hpp comments. i dont know why vector2 is an error on visual code

#include<SFML/Graphics.hpp>
#include<SFML/System.hpp>
#include<SFML/System/Vector2.hpp>

/...

window.clear(sf::Color::Black);
        //draw everything here, create empty watever line
        sf::Vertex pieceofshitline[] = {
        //define points
        sf::Vertex(sf::[u]Vector2f[/u](  0,   0), sf::Color::Red, sf::Vector2f( 0,  0)),
Title: Re: namespace "sf" has no member "Vector2f"
Post by: Hapax on October 07, 2023, 05:17:08 pm
I presume that the [u] and [/u] are due to it being displayed as code and not actually in your code...

This sort of error seems to most often come about when linking incorrectly. It's hard to say without seeing an actual minimal and complete example and all of your linking setup.

Check:

I expect the code you have provided to work if it's linked properly and nothing else is weird in the rest of the code.

*all libraries here is the SFML modules you wish to use and all of the SFML dependencies. e.g. Graphics uses Window and System so you'd need to link all three to use the Graphics module.
If you are building statically, the dependencies includes all of the non-SFML components as well.