~ubuntu-branches/ubuntu/vivid/soundscaperenderer/vivid-proposed

« back to all changes in this revision

Viewing changes to src/orientation.h

  • Committer: Package Import Robot
  • Author(s): IOhannes m zmölnig (Debian/GNU)
  • Date: 2014-09-01 11:35:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140901113532-svjohhyw755nkxef
Tags: 0.4.2~dfsg-1
* Imported Upstream version 0.4.2~dfsg

* Refreshed patches.
* Removed patches applied upstream.
* Install upstream's NEWS as changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
  float azimuth; ///< (=yaw) azimuth (in degrees)
44
44
 
 
45
  /// plus (+) operator
 
46
  friend Orientation operator+(const Orientation& lhs, const Orientation& rhs);
 
47
  /// minus (-) operator
45
48
  friend Orientation operator-(const Orientation& lhs, const Orientation& rhs);
46
 
  friend Orientation operator+(const Orientation& lhs, const Orientation& rhs);
 
49
  /// unary minus (-) operator
 
50
  friend Orientation operator-(const Orientation& rhs);
47
51
 
48
52
  Orientation& operator+=(const Orientation& other);
49
53
  Orientation& operator-=(const Orientation& other);