Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
Tweaked speed parameters to slow things down a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Apr 25, 2016
1 parent c5fd1bc commit 87533a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/util/glrad.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef lint
static const char RCSid[] = "$Id: glrad.c,v 3.24 2016/04/25 02:04:22 greg Exp $";
static const char RCSid[] = "$Id: glrad.c,v 3.25 2016/04/25 20:06:22 greg Exp $";
#endif
/*
* Program to display Radiance scene using OpenGL.
Expand Down Expand Up @@ -29,9 +29,9 @@ static const char RCSid[] = "$Id: glrad.c,v 3.24 2016/04/25 02:04:22 greg Exp $"

#define ZOOMPCT 9 /* percent to zoom at a time */

#define MOVPCT 7 /* percent distance to move /frame */
#define MOVPCT 4 /* percent distance to move /frame */
#define MOVDIR(b) ((b)==Button1 ? 1 : (b)==Button2 ? 0 : -1)
#define MOVDEG (-5) /* degrees to orbit CW/down /frame */
#define MOVDEG (-1.5) /* degrees to orbit CW/down /frame */
#define MOVORB(s) ((s)&ShiftMask ? 1 : (s)&ControlMask ? -1 : 0)

#define BORWIDTH 5 /* border width */
Expand Down

0 comments on commit 87533a6

Please sign in to comment.