-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathRotating_Balls_Animation.cpp
54 lines (42 loc) · 1.75 KB
/
Rotating_Balls_Animation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Make sure you have the SFML library installed and properly linked with your project.
// Compile the code and run the executable.
// The application window will display the circular motion animation with rotating balls.
#include <SFML/Graphics.hpp>
#include <cmath>
const int intervalTime = 40;
const int balls = 8;
const int maxStep = 64;
void animateWorld(sf::RenderWindow& window) {
window.clear();
sf::CircleShape baseShape(240.f);
baseShape.setFillColor(sf::Color::Black);
baseShape.setPosition(window.getSize().x / 2 - 240.f, window.getSize().y / 2 - 240.f);
window.draw(baseShape);
float elapsedTime = 0.f;
sf::Clock clock;
while (window.isOpen()) {
sf::Event event;
while (window.pollEvent(event)) {
if (event.type == sf::Event::Closed)
window.close();
}
elapsedTime = clock.getElapsedTime().asSeconds();
int step = static_cast<int>((elapsedTime * 1000 / intervalTime) % maxStep);
float centerX = window.getSize().x / 2 + 115.f * std::cos(step * 2.f / maxStep * M_PI);
float centerY = window.getSize().y / 2 + 115.f * std::sin(step * 2.f / maxStep * M_PI);
for (int i = 0; i < balls; i++) {
float x = centerX + 115.f * std::cos((i * 2.f / balls - step * 2.f / maxStep) * M_PI);
float y = centerY + 115.f * std::sin((i * 2.f / balls - step * 2.f / maxStep) * M_PI);
sf::CircleShape circle(10.f);
circle.setFillColor(sf::Color::White);
circle.setPosition(x - 10.f, y - 10.f);
window.draw(circle);
}
window.display();
}
}
int main() {
sf::RenderWindow window(sf::VideoMode(800, 600), "Circular Motion Animation");
animateWorld(window);
return 0;
}