NO-OP: whitespace

This fixes mostly <tab> after <space> and similar <tab> not used
for indenting as well as some related code alignment issues.
This commit is contained in:
Robin Gareus 2019-04-13 17:48:27 +02:00
parent 90a7bef656
commit 31815b5f26
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
33 changed files with 268 additions and 287 deletions

View file

@ -839,15 +839,15 @@ void
Panner2d::cart_to_gtk (CartesianVector& c) const
{
/* cartesian coordinate space:
center = 0.0
dimension = 2.0 * 2.0
increasing y moves up
so max values along each axis are -1..+1
GTK uses a coordinate space that is:
top left = 0.0
dimension = (radius*2.0) * (radius*2.0)
increasing y moves down
* center = 0.0
* dimension = 2.0 * 2.0
* increasing y moves up
* so max values along each axis are -1..+1
*
* GTK uses a coordinate space that is:
* top left = 0.0
* dimension = (radius*2.0) * (radius*2.0)
* increasing y moves down
*/
const double diameter = radius*2.0;