Skip to content

Commit ac2a17e

Browse files
committed
bump version
1 parent 5e7ce45 commit ac2a17e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

examples/povmesh/tentacle.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def settings
1111

1212
def setup
1313
sketch_title 'Tentacle'
14-
@tex = load_image('mask.jpg')
14+
@tex = load_image(data_path('mask.jpg'))
1515
ArcBall.init(self)
1616
@gfx = Gfx::MeshToVBO.new(self)
1717
volume = VolumetricSpaceArray.new(TVec3D.new(100, 200, 100), 100, 100, 100)
@@ -61,7 +61,7 @@ def key_pressed
6161
fileID = 'Tentacle'
6262
pm = Gfx::POVMesh.new(self)
6363
pm.begin_save(java.io.File.new(fileID + '.inc'))
64-
pm.set_texture(Gfx::Textures::RED) # red with Phong texture
64+
pm.set_texture(Gfx::Textures::RED) # red with Phong texture
6565
pm.saveAsPOV(mesh, true)
6666
pm.end_save
6767
exit

lib/toxiclibs/version.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
module Toxiclibs
2-
VERSION = '0.8.0'.freeze
3+
VERSION = '0.9.0'.freeze
34
end

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project 'toxiclibs' do
22

33
model_version '4.0.0'
4-
id 'ruby-processing:toxiclibs:0.8.0'
4+
id 'ruby-processing:toxiclibs:0.9.0'
55
packaging 'jar'
66

77
description 'toxiclibs-library for JRubyArt'

0 commit comments

Comments
 (0)