Sha256: 2879b509e617bbf735071eb55b06cb37fb27d81529c5ee55ff025dae1fc3631b

Contents?: true

Size: 1.62 KB

Versions: 11

Compression:

Stored size: 1.62 KB

Contents

# The Nature of Code
# Daniel Shiffman
# http://natureofcode.com
#
# This example is adapted from Karsten Schmidt's SoftBodySquare example
#
# <p>Softbody square demo is showing how to create a 2D square mesh out of
# verlet particles and make it stable enough to adef total structural
# deformation by including an inner skeleton.</p>
#
# <p>Usage: move mouse to drag/deform the square</p>
#
#
# Copyright (c) 2008-2009 Karsten Schmidt
#
# This demo & library is free software you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation either
# version 2.1 of the License, or (at your option) any later version.
#
# http://creativecommons.org/licenses/LGPL/2.1/
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
#
require 'toxiclibs'
require 'forwardable'
require_relative 'blanket'
require_relative 'connection'
require_relative 'particle'

attr_reader :b, :physics

def settings
  size 640, 360
end

def setup
  sketch_title 'Soft Body Square'
  @physics = Physics::VerletPhysics2D.new
  physics.add_behavior(Physics::GravityBehavior2D.new(TVec2D.new(0, 0.1)))
  @b = Blanket.new physics
end

def draw
  background(255)
  physics.update
  b.display
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
toxiclibs-2.1.0 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-2.0.0 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-1.0.0 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.9.3 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.9.2 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.9.1 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.9.0 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.8.0 examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.6.0-java examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.5.1-java examples/soft_body/soft_body_square_adapted.rb
toxiclibs-0.5.0-java examples/soft_body/soft_body_square_adapted.rb