c++ - 将轴对齐的矩形旋转 90 度

标签 c++ rotation 2d sfml

我有一个矩形对象 (sf::IntRect),其属性为:二维平面上的左、上、宽和高。我想围绕点 (0,0) 将其旋转 90 度的倍数(即 90、180 或 270)。因此我正在编写这样的函数:

void rotateRect(sf::IntRect& rect, int rot)
{
    //code I need
}

旋转是 0 (0)、1 (90)、2 (180) 或 3 (270)。

我怎样才能尽可能简单地实现这一目标。

最佳答案

这是在 sf::FloatRect 上使用 sf::Tranform 的基本解决方案:

constexpr auto rotationAngle(int rot) { return rot * 90.f; }

void rotateRect(sf::IntRect& rect, int rot)
{
    auto deg = rotationAngle(rot);
    auto transform = sf::Transform();
    transform.rotate(deg);

    // Would be better if rect was a FloatRect...
    auto rectf = sf::FloatRect(rect);
    rectf = transform.transformRect(rectf);
    rect = static_cast<sf::IntRect>(rectf);
}

但是,我个人会稍微更改函数的签名以使用 float rects 和更紧凑的符号:

sf::FloatRect rotateRect(sf::FloatRect const& rect, int rot)
{
    return sf::Transform().rotate(rotationAngle(rot)).transformRect(rect);
}

下面是展示其行为方式的完整示例。

#include <SFML/Graphics.hpp>

constexpr auto rotationAngle(int rot) { return rot * 90.f; }

sf::FloatRect rotateRect(sf::FloatRect const& rect, int rot)
{
    return sf::Transform().rotate(rotationAngle(rot)).transformRect(rect);
}

void updateShape(sf::RectangleShape& shape, sf::FloatRect const& rect)
{
    shape.setPosition(rect.left, rect.top);
    shape.setSize({ static_cast<float>(rect.width), static_cast<float>(rect.height) });
}

int main(int, char const**)
{
    sf::RenderWindow window(sf::VideoMode(500, 500), "rotate");

    auto rect = sf::FloatRect(0, 0, 100, 50);
    auto shape = sf::RectangleShape();
    shape.setFillColor(sf::Color::Red);
    updateShape(shape, rect);

    auto view = window.getView();
    view.move({ -250, -250 });
    window.setView(view);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();

            if (event.type == sf::Event::KeyReleased && event.key.code == sf::Keyboard::R)
            {
                rect = rotateRect(rect, 1);
                updateShape(shape, rect);
            }

            if (event.type == sf::Event::KeyReleased && event.key.code == sf::Keyboard::N)
            {
                rect = sf::FloatRect(50, 50, 100, 50);
                updateShape(shape, rect);
            }

            if (event.type == sf::Event::KeyReleased && event.key.code == sf::Keyboard::M)
            {
                rect = sf::FloatRect(0, 0, 100, 50);
                updateShape(shape, rect);
            }
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return EXIT_SUCCESS;
}

注意:我使用了 C++14 中的一些技巧,但我相信如果需要,您可以将该代码转换为 C++11/C++98。

关于c++ - 将轴对齐的矩形旋转 90 度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29450329/

相关文章:

c++ - C++11 中返回 const 值类型对 move 语义的影响

C++ 多线程 : Do I need mutex for constructor and destructor?

C++ 线程和 Promise : attempting to reference a deleted function

c++ - 有条件地迭代某些项目

algorithm - 寻找一组点的旋转中心

CSS3 旋转导致问题 IE9

python - Python 二维直方图

ios - UI 相当于 setFrameCenterRotation?

.net - XNA 沿 2D 直线运动

math - 计算二维空间中两点之间的距离?