X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fcircuit.c;h=e6636c29f2f0a1d6f842200e3360b436d84e73d8;hp=e7ee382b80daae3fb04d1771578bf2c1e03b1c82;hb=ffd8c0873576a9e3065696a624dce6b766b77062;hpb=9c9d475ff889ed8be02e8ce8c17da28b93278fca diff --git a/hacks/glx/circuit.c b/hacks/glx/circuit.c index e7ee382b..e6636c29 100644 --- a/hacks/glx/circuit.c +++ b/hacks/glx/circuit.c @@ -91,14 +91,14 @@ static XrmOptionDescRec opts[] = { {"-parts", ".circuit.parts", XrmoptionSepArg, "10" }, {"-font", ".circuit.font", XrmoptionSepArg, "fixed" }, {"-rotate-speed", ".circuit.rotatespeed", XrmoptionSepArg, "1" }, - {"+spin", ".circuit.spin", XrmoptionNoArg, (caddr_t) "false" }, - {"-spin", ".circuit.spin", XrmoptionNoArg, (caddr_t) "true" }, - {"+light", ".circuit.light", XrmoptionNoArg, (caddr_t) "false" }, - {"-light", ".circuit.light", XrmoptionNoArg, (caddr_t) "true" }, - {"+seven", ".circuit.seven", XrmoptionNoArg, (caddr_t) "false" }, - {"-seven", ".circuit.seven", XrmoptionNoArg, (caddr_t) "true" }, - {"+rotate", ".circuit.rotate", XrmoptionNoArg, (caddr_t) "false" }, - {"-rotate", ".circuit.rotate", XrmoptionNoArg, (caddr_t) "true" }, + {"+spin", ".circuit.spin", XrmoptionNoArg, "false" }, + {"-spin", ".circuit.spin", XrmoptionNoArg, "true" }, + {"+light", ".circuit.light", XrmoptionNoArg, "false" }, + {"-light", ".circuit.light", XrmoptionNoArg, "true" }, + {"+seven", ".circuit.seven", XrmoptionNoArg, "false" }, + {"-seven", ".circuit.seven", XrmoptionNoArg, "true" }, + {"+rotate", ".circuit.rotate", XrmoptionNoArg, "false" }, + {"-rotate", ".circuit.rotate", XrmoptionNoArg, "true" }, }; static argtype vars[] = { @@ -149,7 +149,7 @@ static int YMAX = 30; #define MAX_COMPONENTS 30 -#define MOVE_MULT 0.05 +#define MOVE_MULT 0.02 static float f_rand(void) { return ((float)RAND(10000)/(float)10000); @@ -1498,7 +1498,7 @@ Component * NewComponent(void) c->rotx = f_rand(); c->roty = f_rand(); c->rotz = f_rand(); - c->drot = f_rand() * 7; + c->drot = f_rand() * 3; c->rdeg = 0; c->dz = f_rand()*2 - 1; c->norm = 0;