Class: RuPov::CSG::Intersection

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| ... } ⇒ Intersection

Returns a new instance of Intersection.

Yields:

  • (_self)

Yield Parameters:



378
379
380
381
# File 'lib/rupov.rb', line 378

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