Module: VORuby::STC::V1_10::Coords::Velocity

Includes:
SerializableToXml
Included in:
Velocity1D, Velocity2D, Velocity3D
Defined in:
lib/voruby/stc/1.10/coords.rb

Overview

Velocity coordinate substitution group

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SerializableToXml

#element

Instance Attribute Details

#unitObject

Returns the value of attribute unit.



1549
1550
1551
# File 'lib/voruby/stc/1.10/coords.rb', line 1549

def unit
  @unit
end

#vel_time_unitObject

Returns the value of attribute vel_time_unit.



1549
1550
1551
# File 'lib/voruby/stc/1.10/coords.rb', line 1549

def vel_time_unit
  @vel_time_unit
end

Instance Method Details

#==(v) ⇒ Object



1561
1562
1563
1564
1565
# File 'lib/voruby/stc/1.10/coords.rb', line 1561

def ==(v)
  super(v) and
  self.unit == v.unit and
  self.vel_time_unit == v.vel_time_unit
end