Searched refs:deltax (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/third_party/agg23/ |
D | agg_clip_liang_barsky.h | 50 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()
|
D | 0002-ubsan-error-fixes.patch | 17 - 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/ |
D | pong-demo-1.py | 37 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/ |
D | fx_win32_device.cpp | 234 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/ |
D | StripViewer.py | 127 deltax = x - self._x() 128 self._canvas.move(self._TAG, deltax, 0)
|
/external/python/cpython2/Tools/pynche/ |
D | StripViewer.py | 127 deltax = x - self._x() 128 self._canvas.move(self._TAG, deltax, 0)
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 3052 def delta(self, deltax, deltay): argument 3056 self.tk.call(self._w, 'delta', deltax, deltay))
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 2906 def delta(self, deltax, deltay): argument 2910 self.tk.call(self._w, 'delta', deltax, deltay))
|