Method: Geometry::Rotation#eql?

Defined in:
lib/aurora-geometry/rotation.rb

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


69
70
71
# File 'lib/aurora-geometry/rotation.rb', line 69

def eql?(other)
    (self.x.eql? other.x) && (self.y.eql? other.y) && (self.z.eql? other.z)
end