glmath 0.0.1.dev
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 +7 -0
- data/lib/glmath.rb +21 -0
- data/lib/glmath/euler_angle.rb +60 -0
- data/lib/glmath/line.rb +19 -0
- data/lib/glmath/matrix.rb +413 -0
- data/lib/glmath/matrix2.rb +81 -0
- data/lib/glmath/matrix3.rb +108 -0
- data/lib/glmath/matrix4.rb +145 -0
- data/lib/glmath/matrix_stack.rb +91 -0
- data/lib/glmath/quaternion.rb +212 -0
- data/lib/glmath/rect.rb +135 -0
- data/lib/glmath/scalar.rb +33 -0
- data/lib/glmath/vector.rb +155 -0
- data/lib/glmath/vector2.rb +45 -0
- data/lib/glmath/vector3.rb +66 -0
- data/lib/glmath/vector4.rb +54 -0
- data/lib/version.rb +4 -0
- metadata +90 -0
data/lib/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: glmath
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.dev
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- SilverPhoenix99
|
8
|
+
- P3t3rU5
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-06-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '3'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '3'
|
28
|
+
description: Ruby Math Helper for OpenGL
|
29
|
+
email:
|
30
|
+
- silver.phoenix99@gmail.com
|
31
|
+
- pedro.megastore@gmail.com
|
32
|
+
executables: []
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files: []
|
35
|
+
files:
|
36
|
+
- lib/glmath.rb
|
37
|
+
- lib/glmath/euler_angle.rb
|
38
|
+
- lib/glmath/line.rb
|
39
|
+
- lib/glmath/matrix.rb
|
40
|
+
- lib/glmath/matrix2.rb
|
41
|
+
- lib/glmath/matrix3.rb
|
42
|
+
- lib/glmath/matrix4.rb
|
43
|
+
- lib/glmath/matrix_stack.rb
|
44
|
+
- lib/glmath/quaternion.rb
|
45
|
+
- lib/glmath/rect.rb
|
46
|
+
- lib/glmath/scalar.rb
|
47
|
+
- lib/glmath/vector.rb
|
48
|
+
- lib/glmath/vector2.rb
|
49
|
+
- lib/glmath/vector3.rb
|
50
|
+
- lib/glmath/vector4.rb
|
51
|
+
- lib/version.rb
|
52
|
+
homepage: https://github.com/SilverPhoenix99/glmath
|
53
|
+
licenses:
|
54
|
+
- MIT
|
55
|
+
metadata: {}
|
56
|
+
post_install_message: |
|
57
|
+
+----------------------------------------------------------------------------+
|
58
|
+
Thank you for choosing glmath.
|
59
|
+
|
60
|
+
==========================================================================
|
61
|
+
0.0.1.dev Codename Pitagoras
|
62
|
+
|
63
|
+
Changes:
|
64
|
+
- First build.
|
65
|
+
==========================================================================
|
66
|
+
|
67
|
+
If you find any bugs, please report them on
|
68
|
+
https://github.com/SilverPhoenix99/glmath/issues
|
69
|
+
|
70
|
+
+----------------------------------------------------------------------------+
|
71
|
+
rdoc_options: []
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 1.3.1
|
84
|
+
requirements: []
|
85
|
+
rubyforge_project:
|
86
|
+
rubygems_version: 2.6.3
|
87
|
+
signing_key:
|
88
|
+
specification_version: 4
|
89
|
+
summary: Ruby Math Helper for OpenGL
|
90
|
+
test_files: []
|