mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-01 22:06:10 -04:00
Replace unsigned int, and char with uint and uchar.
This commit is contained in:
@ -183,8 +183,8 @@ public:
|
||||
T x, y, z;
|
||||
T p = 2 * rand.Frand01<T>() - 1;
|
||||
T q = 2 * rand.Frand01<T>() - 1;
|
||||
unsigned int i = rand.Rand(3);
|
||||
unsigned int j = rand.RandBit();
|
||||
uint i = rand.Rand(3);
|
||||
uint j = rand.RandBit();
|
||||
|
||||
switch (i)
|
||||
{
|
||||
|
Reference in New Issue
Block a user