Fix right threshold for circularity test
This commit is contained in:
parent
3c583151a3
commit
e955f4ae66
2
core.js
2
core.js
@ -1253,7 +1253,7 @@ function refresh_stick_pos() {
|
|||||||
ofl += Math.pow(ll_data[i] - 1, 2);
|
ofl += Math.pow(ll_data[i] - 1, 2);
|
||||||
}
|
}
|
||||||
for (i=0;i<rr_data.length;i++) {
|
for (i=0;i<rr_data.length;i++) {
|
||||||
if(ll_data[i] > 0.2) {
|
if(rr_data[i] > 0.2) {
|
||||||
rcounter += 1;
|
rcounter += 1;
|
||||||
ofr += Math.pow(rr_data[i] - 1, 2);
|
ofr += Math.pow(rr_data[i] - 1, 2);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user