Home
last modified time | relevance | path

Searched refs:deltax (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/third_party/agg23/
Dagg_clip_liang_barsky.h50 float deltax = width.ValueOrDefault(0); in clip_liang_barsky() local
53 if(deltax == 0) { in clip_liang_barsky()
54 deltax = (x1 > clip_box.x1) ? -nearzero : nearzero; in clip_liang_barsky()
57 if(deltax > 0) { in clip_liang_barsky()
64 float tinx = (xin - x1) / deltax; in clip_liang_barsky()
92 float toutx = (xout - x1) / deltax; in clip_liang_barsky()
102 *x++ = (T)(x1 + (deltax * tiny)); in clip_liang_barsky()
112 *x++ = (T)(x1 + (deltax * touty)); in clip_liang_barsky()
D0002-ubsan-error-fixes.patch17 - float deltax = (float)(x2 - x1);
29 + float deltax = width.ValueOrDefault(0);
32 if(deltax == 0) {
33 deltax = (x1 > clip_box.x1) ? -nearzero : nearzero;
/external/python/cpython2/Demo/tkinter/matt/
Dpong-demo-1.py37 deltax = (self.velocity_x * self.speed.get() / 100.0)
39 self.x = self.x + deltax
42 self.draw.move(self.ball, "%ri" % deltax, "%ri" % deltay)
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp234 float deltax = x2 - x1; in clip_liang_barsky() local
237 if (deltax == 0) in clip_liang_barsky()
238 deltax = (x1 > clip_box.x1) ? -nearzero : nearzero; in clip_liang_barsky()
240 if (deltax > 0) { in clip_liang_barsky()
247 float tinx = (xin - x1) / deltax; in clip_liang_barsky()
274 float toutx = (xout - x1) / deltax; in clip_liang_barsky()
284 *x++ = x1 + (deltax * tiny); in clip_liang_barsky()
294 *x++ = x1 + (deltax * touty); in clip_liang_barsky()
/external/python/cpython3/Tools/pynche/
DStripViewer.py127 deltax = x - self._x()
128 self._canvas.move(self._TAG, deltax, 0)
/external/python/cpython2/Tools/pynche/
DStripViewer.py127 deltax = x - self._x()
128 self._canvas.move(self._TAG, deltax, 0)
/external/python/cpython3/Lib/tkinter/
D__init__.py3052 def delta(self, deltax, deltay): argument
3056 self.tk.call(self._w, 'delta', deltax, deltay))
/external/python/cpython2/Lib/lib-tk/
DTkinter.py2906 def delta(self, deltax, deltay): argument
2910 self.tk.call(self._w, 'delta', deltax, deltay))