module Processing::Proxy

@HACK purists may prefer 'forwardable' to the use of Proxy Importing PConstants here to access the processing constants

Public Instance Methods

method_missing(name, *args) click to toggle source
Calls superclass method
# File lib/jruby_art/app.rb, line 217
def method_missing(name, *args)
  app = Processing.app
  return app.send(name, *args) if app&.respond_to?(name)

  super
end
respond_to_missing?(name, include_private = false) click to toggle source
Calls superclass method
# File lib/jruby_art/app.rb, line 213
def respond_to_missing?(name, include_private = false)
  Processing.app.respond_to?(name) || super
end