tiny_gltf 2.5.0.2 → 2.5.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +17 -0
- data/Gemfile.lock +1 -1
- data/ext/tiny_gltf/rb_tiny_gltf_node.cpp +14 -14
- data/lib/tiny_gltf/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e2ee4a6a043835d7b6861e5cb4e0e56ea750c9d7678246ed2f614189c045ccf
|
4
|
+
data.tar.gz: 8b904768a8c1d19cca92ccb58f669679520e12ebce7571610e3c1bb3fdc75d07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e693521d50716b62e729061072e6925a3881b1366cfe45c5e8e1cf40246df244543daf74aedcca84c32731e0a55b2a859c1e1ae8239d0e104ca97a20a674a82
|
7
|
+
data.tar.gz: 5ad2e959862525c34dd1027da96e8c7f43bfe28a50da2059ec3b3b144e111669f9b271611bba74f49c71362b1b63fa1291485223fdab08adcdc1da3e1cdf9805
|
@@ -0,0 +1,17 @@
|
|
1
|
+
name: Build
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
os: [ubuntu-latest, macos-latest]
|
9
|
+
ruby: [2.6, 2.7]
|
10
|
+
runs-on: ${{ matrix.os }}
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
- uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: ${{ matrix.ruby }}
|
16
|
+
bundler-cache: true
|
17
|
+
- run: bundle exec rake
|
data/Gemfile.lock
CHANGED
@@ -14,6 +14,16 @@ VALUE rNode_new(const Node *node, VALUE rmodel) {
|
|
14
14
|
|
15
15
|
VALUE rmatrix = Qnil, rrotation = Qnil, rtranslation = Qnil, rscale = Qnil;
|
16
16
|
if (node->matrix.size() == 0) {
|
17
|
+
rtranslation = rb_ary_new();
|
18
|
+
if (node->translation.size() == 0) {
|
19
|
+
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
20
|
+
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
21
|
+
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
22
|
+
} else {
|
23
|
+
for (size_t i = 0; i < node->translation.size(); i++)
|
24
|
+
rb_ary_push(rtranslation, DBL2NUM(node->translation[i]));
|
25
|
+
}
|
26
|
+
|
17
27
|
rrotation = rb_ary_new();
|
18
28
|
if (node->rotation.size() == 0) {
|
19
29
|
rb_ary_push(rrotation, DBL2NUM(0.0));
|
@@ -26,24 +36,14 @@ VALUE rNode_new(const Node *node, VALUE rmodel) {
|
|
26
36
|
}
|
27
37
|
|
28
38
|
rscale = rb_ary_new();
|
29
|
-
if (node->
|
30
|
-
rb_ary_push(rscale, DBL2NUM(
|
31
|
-
rb_ary_push(rscale, DBL2NUM(
|
32
|
-
rb_ary_push(rscale, DBL2NUM(
|
39
|
+
if (node->scale.size() == 0) {
|
40
|
+
rb_ary_push(rscale, DBL2NUM(1.0));
|
41
|
+
rb_ary_push(rscale, DBL2NUM(1.0));
|
42
|
+
rb_ary_push(rscale, DBL2NUM(1.0));
|
33
43
|
} else {
|
34
44
|
for (size_t i = 0; i < node->scale.size(); i++)
|
35
45
|
rb_ary_push(rscale, DBL2NUM(node->scale[i]));
|
36
46
|
}
|
37
|
-
|
38
|
-
rtranslation = rb_ary_new();
|
39
|
-
if (node->translation.size() == 0) {
|
40
|
-
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
41
|
-
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
42
|
-
rb_ary_push(rtranslation, DBL2NUM(0.0));
|
43
|
-
} else {
|
44
|
-
for (size_t i = 0; i < node->translation.size(); i++)
|
45
|
-
rb_ary_push(rtranslation, DBL2NUM(node->translation[i]));
|
46
|
-
}
|
47
47
|
} else {
|
48
48
|
rmatrix = rb_ary_new();
|
49
49
|
for (size_t i = 0; i < node->matrix.size(); i++)
|
data/lib/tiny_gltf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_gltf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.0.
|
4
|
+
version: 2.5.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin MacKenzie IV
|
@@ -116,6 +116,7 @@ extensions:
|
|
116
116
|
- ext/tiny_gltf/extconf.rb
|
117
117
|
extra_rdoc_files: []
|
118
118
|
files:
|
119
|
+
- ".github/workflows/build.yml"
|
119
120
|
- ".gitignore"
|
120
121
|
- ".gitmodules"
|
121
122
|
- ".travis.yml"
|