diff options
| author | Jacob Palecki <[email protected]> | 2020-07-29 11:52:36 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-29 11:52:36 -0700 |
| commit | 6bb5b03e2afb0dd52204dfb1924dfd096387de3a (patch) | |
| tree | d0ec0cfd881670f5e79f1c96ddecd428d2b0d07d /common | |
| parent | Inline methods for linking, and fix sens application bug (diff) | |
| download | rawaccel-6bb5b03e2afb0dd52204dfb1924dfd096387de3a.tar.xz rawaccel-6bb5b03e2afb0dd52204dfb1924dfd096387de3a.zip | |
Use modifier object in wrapper
Diffstat (limited to 'common')
| -rw-r--r-- | common/rawaccel.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rawaccel.hpp b/common/rawaccel.hpp index 6f737da..b480e87 100644 --- a/common/rawaccel.hpp +++ b/common/rawaccel.hpp @@ -20,7 +20,7 @@ namespace rawaccel { /// <summary> Struct to hold vector rotation details. </summary> struct rotator { - /// <summary> Rotational vector, which points in the direction of the post-rotation positive y axis. </summary> + /// <summary> Rotational vector, which points in the direction of the post-rotation positive x axis. </summary> vec2d rot_vec = { 1, 0 }; /// <summary> |