rubysketch 0.3.14 → 0.3.18
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/.github/workflows/release.yml +2 -2
- data/.github/workflows/test.yml +2 -2
- data/ChangeLog.md +18 -0
- data/VERSION +1 -1
- data/lib/rubysketch/app.rb +13 -0
- data/lib/rubysketch/glsl.rb +2 -2
- data/lib/rubysketch/module.rb +3 -3
- data/lib/rubysketch/processing.rb +428 -249
- data/lib/rubysketch/window.rb +81 -58
- data/lib/rubysketch-processing.rb +1 -1
- data/lib/rubysketch.rb +2 -0
- data/rubysketch.gemspec +2 -2
- data/test/helper.rb +1 -1
- data/test/processing/test_utility.rb +3 -7
- data/test/processing/test_vector.rb +43 -46
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a179e1170c79df6daea6d79f66eddc3aa7b50d22b2c685bcb36864f0644212e
|
4
|
+
data.tar.gz: 39565ddbcc31a7b6ef472c1fed40c91be91958531246b1673698afcd68ae621e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 435879c3538ece61aaecee0c19e6ece104934316fb113b2f23d9dc57394ded709417e30e32a7697ba1c465927b9d615fa945d1d4a4aa5068629509a33fcdbfff
|
7
|
+
data.tar.gz: b310a39f0c5e5fc55130d8c2cdd71c7620d17a42976d51fc73d7b09d41eeac15854482280bb213a937eda3474185935f27a1dcb6fd2983fad9a144c140fb337a
|
data/.github/workflows/test.yml
CHANGED
data/ChangeLog.md
CHANGED
@@ -1,6 +1,24 @@
|
|
1
1
|
# RubySketch ChangeLog
|
2
2
|
|
3
3
|
|
4
|
+
## [0.3.17] - 2021-12-5
|
5
|
+
|
6
|
+
- add 'mouseButton'
|
7
|
+
- pointer cancel event calls pointer_up block
|
8
|
+
|
9
|
+
|
10
|
+
## [0.3.16] - 2021-2-14
|
11
|
+
|
12
|
+
- add key, keyCode and keyPressed system values
|
13
|
+
- add keyPressed(), keyReleased() and keyTyped() functions
|
14
|
+
- add motionGravity value and motion() function
|
15
|
+
|
16
|
+
|
17
|
+
## [0.3.15] - 2020-12-12
|
18
|
+
|
19
|
+
- delete temporary directory on launch
|
20
|
+
|
21
|
+
|
4
22
|
## [0.3.14] - 2020-12-12
|
5
23
|
|
6
24
|
- fix loadImage() fails when Encoding.default_internal is not nil
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.18
|
data/lib/rubysketch/glsl.rb
CHANGED
@@ -4,12 +4,12 @@ module RubySketch
|
|
4
4
|
# @private
|
5
5
|
class GLSL
|
6
6
|
|
7
|
-
def initialize
|
7
|
+
def initialize(glsl)
|
8
8
|
@shader = Reflex::Shader.new glsl
|
9
9
|
end
|
10
10
|
|
11
11
|
# @private
|
12
|
-
def on_start__
|
12
|
+
def on_start__(window)
|
13
13
|
start = Time.now.to_f
|
14
14
|
|
15
15
|
window.draw = proc do |e, painter|
|
data/lib/rubysketch/module.rb
CHANGED
@@ -5,15 +5,15 @@ module RubySketch
|
|
5
5
|
|
6
6
|
module_function
|
7
7
|
|
8
|
-
def name
|
8
|
+
def name()
|
9
9
|
super.split('::')[-2]
|
10
10
|
end
|
11
11
|
|
12
|
-
def version
|
12
|
+
def version()
|
13
13
|
open(root_dir 'VERSION') {|f| f.readline.chomp}
|
14
14
|
end
|
15
15
|
|
16
|
-
def root_dir
|
16
|
+
def root_dir(path = '')
|
17
17
|
File.expand_path "../../#{path}", __dir__
|
18
18
|
end
|
19
19
|
|