fixed centerpc in Euclidean with yshift

This commit is contained in:
? 2019-02-27 14:13:28 +01:00 committed by Zeno Rogue
parent 35a4330412
commit a1ca5b2995
1 changed files with 1 additions and 1 deletions

View File

@ -1080,7 +1080,7 @@ void centerpc(ld aspd) {
if(aspd > R) aspd = R;
for(int i=0; i<DIM; i++)
View[i][DIM] -= cwtV[i][DIM] * aspd / R;
View[i][DIM] -= H[i] * aspd / R;
}