试图画吃豆人
trying to draw Pac-man
我正在尝试使用 SFML 中的凸形 class 将吃豆人作为作业的一部分进行绘制,但我总是从点 0,0
处额外绘制一块
#include <SFML/Graphics.hpp>
#include <iostream>
using namespace sf;
using namespace std;
#define PI 3.14f
#define Deg2Rad PI/180
ConvexShape Pac(float radius, Vector2f center)
{
int pointsCount = 315;
float theta = 0;
ConvexShape circle;
circle.setPointCount(pointsCount);
for (int i = 45, index = 0; i < 315; i++, index++)
{
Vector2f point;
theta = i * Deg2Rad;
point.x = center.x + radius * cos(theta);
point.y = center.y + radius * sin(theta);
cout << point.x << "," << point.y << endl;
circle.setPoint(index, point);
}
return circle;
}
int main()
{
RenderWindow window(VideoMode(500, 500), "Pac_man");
ConvexShape pacman;
pacman = Pac(100.0f, Vector2f(100, 100));
pacman.setFillColor(sf::Color::Yellow);
while (window.isOpen())
{
Event event;
while (window.pollEvent(event))
{
switch (event.type)
{
case Event::Closed:
window.close();
break;
}
}
window.clear();
window.draw(pacman);
window.display();
}
return 0;
}
总是这样
您的 for 循环仅迭代 270 次 (315 - 45),因此仅设置 315 个顶点中的 270 个。其他45个顶点在默认位置(0, 0).
你的下一个问题是你没有在中心创建顶点。所以你需要一个额外的顶点作为中心。
对这两个问题进行排序后,结果为:
编辑:我现在也意识到吃豆子不是凸形,所以“它可能画得不正确”。要正确绘制它,您需要将其拆分为多个凸形,或使用不同的原始类型(sf::TriangleFan?)
我正在尝试使用 SFML 中的凸形 class 将吃豆人作为作业的一部分进行绘制,但我总是从点 0,0
处额外绘制一块#include <SFML/Graphics.hpp>
#include <iostream>
using namespace sf;
using namespace std;
#define PI 3.14f
#define Deg2Rad PI/180
ConvexShape Pac(float radius, Vector2f center)
{
int pointsCount = 315;
float theta = 0;
ConvexShape circle;
circle.setPointCount(pointsCount);
for (int i = 45, index = 0; i < 315; i++, index++)
{
Vector2f point;
theta = i * Deg2Rad;
point.x = center.x + radius * cos(theta);
point.y = center.y + radius * sin(theta);
cout << point.x << "," << point.y << endl;
circle.setPoint(index, point);
}
return circle;
}
int main()
{
RenderWindow window(VideoMode(500, 500), "Pac_man");
ConvexShape pacman;
pacman = Pac(100.0f, Vector2f(100, 100));
pacman.setFillColor(sf::Color::Yellow);
while (window.isOpen())
{
Event event;
while (window.pollEvent(event))
{
switch (event.type)
{
case Event::Closed:
window.close();
break;
}
}
window.clear();
window.draw(pacman);
window.display();
}
return 0;
}
总是这样
您的 for 循环仅迭代 270 次 (315 - 45),因此仅设置 315 个顶点中的 270 个。其他45个顶点在默认位置(0, 0).
你的下一个问题是你没有在中心创建顶点。所以你需要一个额外的顶点作为中心。
对这两个问题进行排序后,结果为:
编辑:我现在也意识到吃豆子不是凸形,所以“它可能画得不正确”。要正确绘制它,您需要将其拆分为多个凸形,或使用不同的原始类型(sf::TriangleFan?)