Daniel Juyung Seo 2014-01-07 00:08:31 +09:00
parent b01433ff47
commit bfb91fe341
2 changed files with 1 additions and 5 deletions

View File

@ -134,7 +134,6 @@ _cube_pos(Cube *c,
evas_map_point_coord_get(m, j, NULL, NULL, &(tz[j]));
mz[i] = (tz[0] + tz[1] + tz[2] + tz[3]) / 4;
}
sorted = 0;
do
{
sorted = 1;

View File

@ -316,7 +316,7 @@ _state_update(State *st)
Slice *sl;
double b, minv = 0.0, minva, mgrad;
int gx, gy, gszw, gszh, gw, gh, col, row, nw, nh;
double rho, A, theta, perc, percm, n, rhol, Al, thetal;
double rho, A, theta, perc, n, rhol, Al, thetal;
Vertex3 *tvo, *tvol;
st->backflip = 0;
@ -408,11 +408,8 @@ _state_update(State *st)
}
perc = (double)xx2 / (double)xx1;
percm = (double)mx / (double)xx1;
if (perc < 0.0) perc = 0.0;
else if (perc > 1.0) perc = 1.0;
if (percm < 0.0) percm = 0.0;
else if (percm > 1.0) percm = 1.0;
minva = atan(minv) / (M_PI / 2);
if (minva < 0.0) minva = -minva;