## # Landscape # Simple raymarching shader with camera, originally by Paulo Falcão # Ported from the webGL version in GLSL Sandbox: # http://glsl.heroku.com/e//3213.0 # ## attr_reader :landscape, :pg def setup size(640, 360, P2D) # This effect can be too demanding on older GPUs, # so we can render it on a smaller res offscreen surface # @pg = create_graphics(320, 180, P2D) @pg = create_graphics(640, 360, P2D) pg.no_stroke() @landscape = load_shader("landscape.glsl") landscape.set("resolution", width.to_f, height.to_f) end def draw landscape.set("time", millis() / 1000.0) landscape.set("mouse", mouse_x.to_f, height - mouse_y.to_f) # This kind of raymarching effects are entirely implemented in the # fragment shader, they only need a quad covering the entire view # area so every pixel is pushed through the shader. pg.begin_draw() pg.shader(landscape) pg.rect(0, 0, width, height) pg.end_draw() # Scaling up offscreen surface to cover entire screen (if reduced). image(pg, 0, 0, width, height) end
Experiments with ruby-processing (processing-2.2.1) and JRubyArt for processing-3.0
Tuesday, 4 December 2012
Landscape shader in ruby-processing
Feels like I'm on a roll, here is the processing-2.0 landscape shader example running with ruby-processing.
Labels:
landscape shader,
processing-2.0,
ruby-processing
Subscribe to:
Post Comments (Atom)
Followers
Blog Archive
-
▼
2012
(26)
-
▼
December
(17)
- Bezier Patch as a VBO (PShape)
- Bezier Patch in ruby-processing
- Rotating Arcs Sketch in Ruby Processing
- Context free sketch in regular ruby processing
- Exporting cf3ruby directly to 'large' pdf
- Context Free Tree in cf3ruby
- New context_free.rb (cf3ruby)
- MeshToVBO conversion ruby-processing
- Fix for ruby-processing context free
- What works what does not and may not
- Retained Shape (FBO) in Ruby Processing
- Creating a Mock Vanilla Processing Distribution
- Landscape shader in ruby-processing
- Fish-eye shader revisited with ruby-processing and...
- PShader Example in ruby-processing
- A 3D-texture example with my hacked ruby-processing
- Testing ruby-processing with processing-2.0
-
▼
December
(17)
About Me
- monkstone
- I have developed JRubyArt and propane new versions of ruby-processing for JRuby-9.1.5.0 and processing-3.2.2
No comments:
Post a Comment