pixo 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/ext/libpixgem/src/application.cpp +4 -1
- data/ext/pixo/pixlib/include/pixlib/app.hpp +4 -3
- data/ext/pixo/pixlib/src/app.cpp +1 -5
- data/lib/pixo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d520f8c8ce6474f1bbf4c1b2998a726155a93683
|
4
|
+
data.tar.gz: 98b7fc63adf6bdfa2fe658c4a7741a137402120c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c6b4d4da79a26261407bef69ab3b6c915e9c0b4a0b911de5446edfbe93f3c982b7a1e9fa9dd5289e7ab26ed60e1efb3c5d7a126b211ae856e54fd8c84603fe
|
7
|
+
data.tar.gz: 68be8f926ca22fa389201d36a5d3316b589e656c046607d3b591d9440a7e73a0b37ed06d1681858ce90fe091f207a2ca76f4a45813eaf82a8fccec419e723777
|
data/Gemfile.lock
CHANGED
@@ -167,7 +167,10 @@ VALUE application_tick(VALUE self, VALUE r_pattern, VALUE r_brightness)
|
|
167
167
|
|
168
168
|
app_holder->app->tick(pattern_holder->pattern, brightness, width, height);
|
169
169
|
|
170
|
-
app_holder->app->
|
170
|
+
if (app_holder->app->frame_timer.duration() > 0) {
|
171
|
+
float rotate_by = 5 * app_holder->app->frame_timer.duration();
|
172
|
+
app_holder->app->viewed_from.rotate(rotate_by);
|
173
|
+
}
|
171
174
|
|
172
175
|
glfwSwapBuffers(app_holder->window);
|
173
176
|
|
@@ -30,14 +30,15 @@ namespace Pixlib {
|
|
30
30
|
void move_camera_to_perspective();
|
31
31
|
|
32
32
|
void tick(Pattern* pattern, float brightness, int width, int height);
|
33
|
+
Timer frame_timer;
|
34
|
+
|
35
|
+
IsoCamera viewed_from;
|
36
|
+
IsoCamera camera;
|
33
37
|
private:
|
34
38
|
Scene scene;
|
35
39
|
std::vector<LedCluster*> led_clusters;
|
36
40
|
|
37
|
-
IsoCamera viewed_from;
|
38
|
-
IsoCamera camera;
|
39
41
|
|
40
|
-
Timer frame_timer;
|
41
42
|
|
42
43
|
FadeCandy *fc;
|
43
44
|
};
|
data/ext/pixo/pixlib/src/app.cpp
CHANGED
@@ -55,11 +55,7 @@ namespace Pixlib {
|
|
55
55
|
void App::tick(Pattern* pattern, float brightness, int width, int height) {
|
56
56
|
frame_timer.end();
|
57
57
|
frame_timer.start();
|
58
|
-
|
59
|
-
float rotate_by = 5 * frame_timer.duration();
|
60
|
-
camera.rotate(rotate_by);
|
61
|
-
}
|
62
|
-
|
58
|
+
|
63
59
|
for (LedCluster* led_cluster : led_clusters) {
|
64
60
|
led_cluster->render(viewed_from, *pattern, brightness);
|
65
61
|
}
|
data/lib/pixo/version.rb
CHANGED