texplay 0.2.965-i386-mswin32 → 0.2.970-i386-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +7 -0
- data/README.markdown +1 -1
- data/examples/example_transparent.rb +30 -0
- data/examples/example_transparent2.rb +26 -0
- data/lib/1.8/texplay.so +0 -0
- data/lib/1.9/texplay.so +0 -0
- data/lib/texplay/version.rb +1 -1
- metadata +6 -4
data/CHANGELOG
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
14/8/10
|
2
|
+
version 0.2.970
|
3
|
+
* fixed :transparent bug (bug was in rb_convert_rb_color_to_rgba(), :transparent was being matched as
|
4
|
+
not_a_color)
|
5
|
+
* limited not_a_color() to match just color.red == -1 && color.green == -1, etc rather than color.red < 0
|
6
|
+
* Now we can use negative values to define other pseudo-colors (in similar vein to :transparent)
|
7
|
+
|
1
8
|
16/7/10
|
2
9
|
version 0.2.965
|
3
10
|
* fixed MAX_TEXTURE_SIZE at 1024 for linux (to avoid segfault)
|
data/README.markdown
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'common'
|
3
|
+
require 'gosu'
|
4
|
+
require 'texplay'
|
5
|
+
|
6
|
+
class W < Gosu::Window
|
7
|
+
def initialize
|
8
|
+
super(400, 300, false, 20)
|
9
|
+
@img = TexPlay.create_image(self, 400, 300)
|
10
|
+
@img.rect 100, 100, 200, 200, :color => :red, :fill => true
|
11
|
+
|
12
|
+
# Coloured transparent block with white border.
|
13
|
+
@img.rect 200, 100, 300, 200, :color => [1, 1, 1, 0], :fill => true
|
14
|
+
@img.rect 200, 100, 300, 200
|
15
|
+
|
16
|
+
@img.line 0, 120, 500, 120, :dest_select => :transparent, :color => :green
|
17
|
+
# @img.line 0, 140, 500, 140, :dest_select => :alpha
|
18
|
+
# @img.line 0, 160, 500, 160, :dest_select => :transparent # Should draw everywhere except the red block.
|
19
|
+
# @img.line 0, 180, 500, 180, :dest_ignore => :transparent # Should draw only on the red block.
|
20
|
+
end
|
21
|
+
|
22
|
+
def draw
|
23
|
+
@img.draw 0, 0, 1
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
w = W.new
|
30
|
+
w.show
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'common'
|
3
|
+
require 'gosu'
|
4
|
+
require 'texplay'
|
5
|
+
|
6
|
+
class W < Gosu::Window
|
7
|
+
def initialize
|
8
|
+
super(400, 300, false, 20)
|
9
|
+
@img = TexPlay.create_image(self, 400, 300)
|
10
|
+
@img.rect 0, 0, 200, 100, :color => [1,1,1,0], :fill => true
|
11
|
+
@img.rect 200, 100, 400, 300, :color => [1,1,1,0.1], :fill => true
|
12
|
+
|
13
|
+
|
14
|
+
@img.line 0, 120, 500, 120,
|
15
|
+
:dest_select => :transparent, :color => :green, :tolerance => 0.1
|
16
|
+
end
|
17
|
+
|
18
|
+
def draw
|
19
|
+
@img.draw 0, 0, 1
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
|
25
|
+
w = W.new
|
26
|
+
w.show
|
data/lib/1.8/texplay.so
CHANGED
Binary file
|
data/lib/1.9/texplay.so
CHANGED
Binary file
|
data/lib/texplay/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: texplay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1923
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 970
|
10
|
+
version: 0.2.970
|
11
11
|
platform: i386-mswin32
|
12
12
|
authors:
|
13
13
|
- John Mair (banisterfiend)
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-08-14 00:00:00 +12:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -81,6 +81,8 @@ files:
|
|
81
81
|
- examples/example_splice.rb
|
82
82
|
- examples/example_sync.rb
|
83
83
|
- examples/example_trace.rb
|
84
|
+
- examples/example_transparent.rb
|
85
|
+
- examples/example_transparent2.rb
|
84
86
|
- examples/example_turtle.rb
|
85
87
|
- examples/example_weird.rb
|
86
88
|
- examples/media/bird.png
|