rmath3d 1.0.2 → 1.1.0
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/ChangeLog +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +5 -3
- data/ext/rmath3d/RMath3D.h +2 -0
- data/ext/rmath3d/RMtx2.c +255 -0
- data/ext/rmath3d/RMtx2.h +88 -0
- data/ext/rmath3d/RVec2.c +167 -0
- data/ext/rmath3d/RVec2.h +80 -0
- data/ext/rmath3d/rmath3d.c +3575 -1811
- data/lib/rmath3d/rmath3d_plain.rb +1886 -1015
- data/test/test.rb +2 -0
- data/test/test_RMtx2.rb +363 -0
- data/test/test_RVec2.rb +187 -0
- metadata +10 -4
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmath3d
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
|
-
Provides
|
14
|
+
Provides vector2/3/4, matrix2x2/3x3/4x4 and quaternion in C extension library form (and plain Ruby form with the same interface for debugging use).
|
15
15
|
Notice: This library provides native extension. You must setup development environment (or DevKit) before installation.
|
16
16
|
email:
|
17
17
|
- vaiorabbit@gmail.com
|
@@ -25,6 +25,8 @@ files:
|
|
25
25
|
- README.md
|
26
26
|
- Rakefile
|
27
27
|
- ext/rmath3d/RMath3D.h
|
28
|
+
- ext/rmath3d/RMtx2.c
|
29
|
+
- ext/rmath3d/RMtx2.h
|
28
30
|
- ext/rmath3d/RMtx3.c
|
29
31
|
- ext/rmath3d/RMtx3.h
|
30
32
|
- ext/rmath3d/RMtx4.c
|
@@ -32,6 +34,8 @@ files:
|
|
32
34
|
- ext/rmath3d/RQuat.c
|
33
35
|
- ext/rmath3d/RQuat.h
|
34
36
|
- ext/rmath3d/RType.h
|
37
|
+
- ext/rmath3d/RVec2.c
|
38
|
+
- ext/rmath3d/RVec2.h
|
35
39
|
- ext/rmath3d/RVec3.c
|
36
40
|
- ext/rmath3d/RVec3.h
|
37
41
|
- ext/rmath3d/RVec4.c
|
@@ -43,9 +47,11 @@ files:
|
|
43
47
|
- sample/opengl2/load_matrix.rb
|
44
48
|
- sample/simple/transform.rb
|
45
49
|
- test/test.rb
|
50
|
+
- test/test_RMtx2.rb
|
46
51
|
- test/test_RMtx3.rb
|
47
52
|
- test/test_RMtx4.rb
|
48
53
|
- test/test_RQuat.rb
|
54
|
+
- test/test_RVec2.rb
|
49
55
|
- test/test_RVec3.rb
|
50
56
|
- test/test_RVec4.rb
|
51
57
|
homepage: https://github.com/vaiorabbit/rmath3d
|
@@ -68,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
74
|
version: '0'
|
69
75
|
requirements: []
|
70
76
|
rubyforge_project:
|
71
|
-
rubygems_version: 2.
|
77
|
+
rubygems_version: 2.4.6
|
72
78
|
signing_key:
|
73
79
|
specification_version: 4
|
74
80
|
summary: Ruby Math Module for 3D Applications
|