Class: RuPov::CSG::Union

Inherits:
Base
  • Object
show all
Defined in:
lib/rupov.rb

Instance Attribute Summary

Attributes inherited from Base

#name

Instance Method Summary collapse

Methods inherited from Base

#<<, #to_s

Constructor Details

#initialize {|_self| ... } ⇒ Union

Returns a new instance of Union.

Yields:

  • (_self)

Yield Parameters:



364
365
366
367
# File 'lib/rupov.rb', line 364

def initialize
    super( 'union' )
    yield(self) if block_given? and self.class == Union
end