fixed centerpc in Euclidean with yshift

This commit is contained in:
?
2019-09-12 22:38:42 +02:00
committed by Zeno Rogue
parent 35a4330412
commit a1ca5b2995
+1 -1
View File
@@ -1080,7 +1080,7 @@ void centerpc(ld aspd) {
if(aspd > R) aspd = R; if(aspd > R) aspd = R;
for(int i=0; i<DIM; i++) for(int i=0; i<DIM; i++)
View[i][DIM] -= cwtV[i][DIM] * aspd / R; View[i][DIM] -= H[i] * aspd / R;
} }