Method: Fox::Canvas::ShapeCanvas#deselectShape

Defined in:
lib/fox16/canvas.rb

#deselectShape(shape, notify = false) ⇒ Object

Deselect one shape



480
481
482
483
484
485
486
# File 'lib/fox16/canvas.rb', line 480

def deselectShape(shape, notify=false)
  if @scene.include?(shape)
    @selectionPolicy.deselectShape(shape, notify)
  else
    raise CanvasError
  end
end