Home
last modified time | relevance | path

Searched refs:drawLine (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DX2DFast.js83 this.drawLine(lx, ly, dx, dy, c, lw);
95 drawLine(x1, y1, x2, y2, c = 0xffffffff, linewidth = 1) { method in X2DFast
114 this.drawLine(x - lw / 2, y, x + w + lw / 2, y, c, lw);
115 this.drawLine(x, y, x, y + h, c, lw);
116 this.drawLine(x + w, y + h, x + w, y, c, lw);
117 this.drawLine(x + w + lw / 2, y + h, x - lw / 2, y + h, c, lw);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/
DRightMenu.js114 X2DFast.px2f.drawLine(x, y, x + w, y, 0xff808080, 2);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
DIrViewer.js423 this.drawLine(ln[0], ln[1], ln[2], ln[3], 0xff000000 | (r << 16) | (g << 8) | b, ln[5] + 1);
617 mouseOn |= this.drawLine(...ln);
625 drawLine(x1, y1, x2, y2, c, lw = 1) { method in IrViewer