Sha256: fa67f233f77f3929f1da19cd99ce99df0671b62eb0f2628081b1878ed66dce0b

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# The Nature of Code
# Daniel Shiffman
# http://natureofcode.com

# A fixed boundary class
class Boundary
  extend Forwardable
  def_delegators(:@app, :box2d, :rect_mode, :rect, :fill, :stroke)
  # A boundary is a simple rectangle with x, y, width, and height
  attr_reader :x, :y, :w, :h

  def initialize(x, y, w, h)
    @x, @y, @w, @h = x, y, w, h
    @app = Processing.app
    # Define the polygon
    sd = PolygonShape.new
    # Figure out the box2d coordinates
    box2dw = box2d.scale_to_world(w / 2)
    box2dh = box2d.scale_to_world(h / 2)
    # We're just a box
    sd.setAsBox(box2dw, box2dh)
    # Create the body
    bd = BodyDef.new
    bd.type = BodyType::STATIC
    bd.position.set(box2d.processing_to_world(x, y))
    b = box2d.createBody(bd)
    # Attached the shape to the body using a Fixture
    b.create_fixture(sd, 1)
  end

  # Draw the boundary, if it were at an angle we'd have to do something fancy
  def display
    fill(0)
    stroke(0)
    rect_mode(Java::ProcessingCore::PConstants::CENTER)
    rect(x, y, w, h)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pbox2d-1.0.3-java examples/distance_joint/boundary.rb