Method: Coords::Cartesian3d#initialize
- Defined in:
- lib/coords/cartesian3d.rb
#initialize(x, y, z) ⇒ Cartesian3d
Returns a new instance of Cartesian3d.
4 5 6 7 |
# File 'lib/coords/cartesian3d.rb', line 4 def initialize(x, y, z) super(x, y) @z = z end |