fix: Remove debug line

This commit is contained in:
Frederik Beimgraben 2025-01-11 16:38:16 +01:00
parent ff1e7fc10d
commit 8c5b151bc0
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -24,7 +24,7 @@ int main (int iArgC, char** ppcArgV){
for(int i=0; i<4; i++){
double dRes = interpolateLine(dX1, dY1, dX2, dY2, dX+(double)i);
printf ("%f,%f\n",dX+(double)i,dRes);
printf ("%f\n",dRes);
}
return iRes;