Class: SkippyLib::Plane
- Inherits:
-
Array
- Object
- Array
- SkippyLib::Plane
- Defined in:
- modules/plane.rb
Overview
Instance Method Summary collapse
-
#initialize(point, vector) ⇒ Plane
constructor
A new instance of Plane.
- #inspect ⇒ Object
Constructor Details
#initialize(point, vector) ⇒ Plane
Returns a new instance of Plane.
10 11 12 13 14 |
# File 'modules/plane.rb', line 10 def initialize(point, vector) super() push(point) push(vector) end |
Instance Method Details
#inspect ⇒ Object
33 34 35 |
# File 'modules/plane.rb', line 33 def inspect "#{self.class.name}#{super}" end |