# File lib/eymiha/math3/point3.rb, line 106
    def theta
      (@x == 0)? ((@y > 0)? @@pio2 : -@@pio2) : Math.atan2(@y,@x)
    end