rubysketch 0.3.13 → 0.3.17
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 +17 -0
- data/VERSION +1 -1
- data/examples/image.rb +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 +413 -249
- data/lib/rubysketch/window.rb +78 -55
- data/lib/rubysketch-processing.rb +1 -1
- data/lib/rubysketch.rb +2 -0
- data/rubysketch.gemspec +1 -1
- data/test/helper.rb +1 -1
- data/test/processing/test_utility.rb +3 -7
- data/test/processing/test_vector.rb +43 -46
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0394813335c89ce937297ef2c62819dc3c11f70dbbf74efd320eaf0a72f8b386'
|
4
|
+
data.tar.gz: 9acea3187bd120239a7c387fa272e252593dc7ce0afa73425f39f65fe0b2d6bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d1824db8f17db944d6b1a2d6069b1acfcc4dafdf3d52facc2e5cdf0281108b825e89150e509c7e58ad8e2c7641d3ee9e6612f8486ebf9190ccd30cc48dbd1ae
|
7
|
+
data.tar.gz: bdefffaabba512793dddc3204d749a22968096f464a9107214630012585f40f2aedd294216af321c4ae83f4fd5eb11e24d2eaab4fd1486cb39c3ecb50714c00f
|
data/.github/workflows/test.yml
CHANGED
data/ChangeLog.md
CHANGED
@@ -1,6 +1,23 @@
|
|
1
1
|
# RubySketch ChangeLog
|
2
2
|
|
3
3
|
|
4
|
+
## [0.3.16] - 2021-2-14
|
5
|
+
|
6
|
+
- add key, keyCode and keyPressed system values
|
7
|
+
- add keyPressed(), keyReleased() and keyTyped() functions
|
8
|
+
- add motionGravity value and motion() function
|
9
|
+
|
10
|
+
|
11
|
+
## [0.3.15] - 2020-12-12
|
12
|
+
|
13
|
+
- delete temporary directory on launch
|
14
|
+
|
15
|
+
|
16
|
+
## [0.3.14] - 2020-12-12
|
17
|
+
|
18
|
+
- fix loadImage() fails when Encoding.default_internal is not nil
|
19
|
+
|
20
|
+
|
4
21
|
## [0.3.13] - 2020-12-12
|
5
22
|
|
6
23
|
- size(), createCanvas(): default pixelDensity is same as current value
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.17
|
data/examples/image.rb
CHANGED
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
|
|