-
there is just one small problem still exist in chapt3 from SFML GAME DEVELOPMENT;
in this code
virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const
{
// Apply transform of current node
states.transform *= getTransform();
// Draw node and children with changed transform
drawCurrent(target, states);
drawChildren(target, states);
}
what (*=) or (combine) do in this code (I have read the documentation about this function but still cant understand what it is doing)
==========================
and just another small question .in the above function (draw)
draw current and draw children take the same state ???
how this is possible. and there is three planes draw themselves in three different locations.
-
states.transform *= getTransform();
is equivalent tostates.transform = states.transform * getTransform();
and to states.transform.combine(getTransform());
It multiplies states.transform by the sf::Transform returned by getTransform() and assign it to states.transform.
More simply, it gives you an sf::Transform that does what the 2 other sf::Transform would do if they were successively applied.
-
how about just a little example and I'll be very grateful
-
The code where you first found it is supposed to be an example ::)
But well, here it is:
sf::Transform t1;
t1.translate(x, y); // translates
sf::Transform t2;
t2.rotate(angle); // rotates
sf::Transform t3;
t3 = t1 * t2; // translates and rotate
And please stop abusing of the formatting options.