module Oozby::Geometry

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

Public Instance Methods

method_missing(*args, &proc) click to toggle source
Calls superclass method
# 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