File CImg-139.h.patch of Package wxcam
23
1
--- ./src/CImg.h~ 2011-03-09 22:14:35.000000000 +0100
2
+++ ./src/CImg.h 2015-12-21 14:23:00.886919854 +0100
3
4
by = 3*(y1 - y0) - 2*v0 - v1,
5
_precision = 1/(std::sqrt(cimg::sqr(x0-x1)+cimg::sqr(y0-y1))*(precision>0?precision:1));
6
int ox = x0, oy = y0, otx = tx0, oty = ty0;
7
- for (float t = 0; t<1; t+=_precision) {
8
- const float t2 = t*t, t3 = t2*t;
9
+ for (float ttt = 0; ttt<1; ttt+=_precision) {
10
+ const float t2 = ttt*ttt, t3 = t2*ttt;
11
const int
12
- nx = (int)(ax*t3 + bx*t2 + u0*t + x0),
13
- ny = (int)(ay*t3 + by*t2 + v0*t + y0),
14
- ntx = tx0 + (int)((tx1-tx0)*t),
15
- nty = ty0 + (int)((ty1-ty0)*t);
16
+ nx = (int)(ax*t3 + bx*t2 + u0*ttt + x0),
17
+ ny = (int)(ay*t3 + by*t2 + v0*ttt + y0),
18
+ ntx = tx0 + (int)((tx1-tx0)*ttt),
19
+ nty = ty0 + (int)((ty1-ty0)*ttt);
20
draw_line(ox,oy,nx,ny,texture,otx,oty,ntx,nty,opacity,pattern,ninit_hatch);
21
ninit_hatch = false;
22
ox = nx; oy = ny; otx = ntx; oty = nty;
23