| # | Line 112 | Line 112 | interp_anisotropic() | |
|---|---|---|
| 112 | /* run through directions */ | |
| 113 | for (ix = 0; ix < sqres; ix++) | |
| 114 | for (iy = 0; iy < sqres; iy++) { | |
| 115 | < | RBFNODE *rbf; |
| 115 | > | RBFNODE *rbf; /* Klems reversal */ |
| 116 | SDsquare2disk(ivec, (ix+.5)/sqres, (iy+.5)/sqres); | |
| 117 | + | ivec[0] = -ivec[0]; ivec[1] = -ivec[1]; |
| 118 | ivec[2] = input_orient * | |
| 119 | sqrt(1. - ivec[0]*ivec[0] - ivec[1]*ivec[1]); | |
| 120 | rbf = advect_rbf(ivec); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |