SFML community forums

Help => Graphics => Topic started by: MickeyKnox on August 25, 2024, 10:32:15 pm

Title: error: ‘sf::FloatRect’ has no member named ‘getPosition’
Post by: MickeyKnox on August 25, 2024, 10:32:15 pm
From this code

sprite.getGlobalBounds().getPosition()

I get this error:

error: ‘sf::FloatRect’ {aka ‘class sf::Rect<float>’} has no member named ‘getPosition’
   26 |         info.setPosition(image->sprite.getGlobalBounds().getPosition());
      |                                                          ^~~~~~~~~~~


Accoding to the documentation Rect does have a member getPosition: https://www.sfml-dev.org/documentation/2.6.1/classsf_1_1Rect.php (https://www.sfml-dev.org/documentation/2.6.1/classsf_1_1Rect.php)

What am I missing?
Title: Re: error: ‘sf::FloatRect’ has no member named ‘getPosition’
Post by: MickeyKnox on August 25, 2024, 10:37:01 pm
Ups my bad. I just realized that I'm still on SFML 2.5.1. Accoding to the changelog, the missing function was introduced in 2.6
Title: Re: error: ‘sf::FloatRect’ has no member named ‘getPosition’
Post by: eXpl0it3r on August 25, 2024, 11:11:10 pm
Yep, it's been added in 2.6.

I highly recommend to update SFML ;)

As a side note for SFML 3 users, the functions were replaced in favor of data members position and size.