Module: Oozby::Geometry

Defined in:
lib/oozby/environment.rb

Overview

module you can include in your classes to be able to make 3d shapes in them

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args, &proc) ⇒ Object



282
283
284
285
286
287
288
289
# File 'lib/oozby/environment.rb', line 282

def method_missing *args, &proc
  environ = Oozby::Environment.active
  if environ.oozby_method_defined?(args.first)
    environ.oozby_send_method *args, &proc
  else
    super
  end
end