Typo in README: minDotSize, maxDotSize and dotSizeFactor are all camel case.
This commit is contained in:
parent
6a3c991dc2
commit
1f3a16eea5
|
@ -49,9 +49,9 @@ public int centroidsPerPass = 500;
|
||||||
public int testsPerFrame = 90000;
|
public int testsPerFrame = 90000;
|
||||||
public int maxGenerations = 5; //number of generations
|
public int maxGenerations = 5; //number of generations
|
||||||
|
|
||||||
public float MinDotSize = 1.25;
|
public float minDotSize = 1.25;
|
||||||
public float MaxDotSize;
|
public float maxDotSize;
|
||||||
public float DotSizeFactor = 4;
|
public float dotSizeFactor = 4;
|
||||||
|
|
||||||
public int maxParticles = 2000; // Max value is normally 10000.
|
public int maxParticles = 2000; // Max value is normally 10000.
|
||||||
public float cutoff = 0; // White cutoff value
|
public float cutoff = 0; // White cutoff value
|
||||||
|
|
Loading…
Reference in New Issue