//While copy, include the 2 letters of the VRTag
//For SQ, I had to count the number of byte with size and endSQ
- /* while (f) {
- uint32_t tempChar;
+ /*while (f) {
+ uint32_t tempChar(0);
f.read((char*)&tempChar,1);
std::cout << tempChar << std::endl;
}
kernely[i]=KernelPower((float)(yi+i-1-y));
}//for i
break;
+ default:
+ i=0;
}//switch
rr=gg=bb=aa=0;
if (((xi+2)<head.biWidth) && xi>=1 && ((yi+2)<head.biHeight) && (yi>=1) && !IsIndexed()) {
return (0.16666666666666666667f * (a - (4.0f * b) + (6.0f * c) - (4.0f * d)));
- /* equivalent <Vladimír Kloucek>
+ /* equivalent <Vladimir Kloucek>
if (x < -2.0)
return(0.0f);
if (x < -1.0)
// if (-1<=t && t<0) return 1+t;
// return 0;
- //<Vladimír Kloucek>
+ //<Vladimir Kloucek>
if (t < -1.0f)
return 0.0f;
if (t < 0.0f)
if (pSelection==NULL) SelectionCreate();
if (pSelection==NULL) return false;
- long xradius = abs(r.right - r.left)/2;
- long yradius = abs(r.top - r.bottom)/2;
+ long xradius = labs(r.right - r.left)/2;
+ long yradius = labs(r.top - r.bottom)/2;
if (xradius==0 || yradius==0) return false;
long xcenter = (r.right + r.left)/2;