Home
last modified time | relevance | path

Searched refs:leftX (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/dports/sysutils/dvdisaster/dvdisaster-0.79.5/
H A Dcurve.c100 return 1 + curve->leftX + ((gdouble)x * width) / 1000.0;
106 return 1 + curve->leftX + (x * width) / (gdouble)curve->maxX;
148 curve->leftX = 5 + 6 + 3 + w;
178 curve->leftX, curve->topY, curve->leftX, curve->bottomY);
182 curve->leftX, curve->topLY, curve->leftX, curve->bottomLY);
187 x = curve->leftX - w/2;
202 x = curve->leftX - w/2;
215 gdk_draw_line(d, Closure->drawGC, curve->leftX-6, y, curve->leftX, y);
222 gdk_draw_line(d, Closure->drawGC, curve->leftX-3, y, curve->leftX, y);
248 gdk_draw_line(d, Closure->drawGC, curve->leftX-6, y, curve->leftX, y);
[all …]
/dports/lang/squeak/Squeak-4.10.2.2614-src/Cross/plugins/Squeak3D/
H A Db3dDraw.c254 double floatX = leftX; in b3dDrawRGBFlat()
269 while(leftX <= rightX) { in b3dDrawRGBFlat()
270 bits[leftX++] = pv; in b3dDrawRGBFlat()
291 double floatX = leftX; in b3dDrawRGB()
306 deltaX = rightX - leftX + 1; in b3dDrawRGB()
332 bits[leftX++] = pv; in b3dDrawRGB()
347 bits[leftX++] = pv; in b3dDrawRGB()
376 double floatX = leftX; in b3dDrawSTWRGB()
394 deltaX = rightX - leftX + 1; in b3dDrawSTWRGB()
446 bits[leftX++] = pv; in b3dDrawSTWRGB()
[all …]
/dports/x11-toolkits/qt5-charts/kde-qtcharts-5.15.2p2/src/charts/domain/
H A Dlogxypolardomain.cpp86 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomIn() local
88 qreal minX = leftX < rightX ? leftX : rightX; in zoomIn()
89 qreal maxX = leftX > rightX ? leftX : rightX; in zoomIn()
108 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomOut() local
110 qreal minX = leftX < rightX ? leftX : rightX; in zoomOut()
111 qreal maxX = leftX > rightX ? leftX : rightX; in zoomOut()
126 qreal leftX = qPow(m_logBaseX, m_logLeftX + stepX); in move() local
128 qreal minX = leftX < rightX ? leftX : rightX; in move()
129 qreal maxX = leftX > rightX ? leftX : rightX; in move()
H A Dlogxydomain.cpp87 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomIn() local
89 qreal minX = leftX < rightX ? leftX : rightX; in zoomIn()
90 qreal maxX = leftX > rightX ? leftX : rightX; in zoomIn()
110 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomOut() local
112 qreal minX = leftX < rightX ? leftX : rightX; in zoomOut()
113 qreal maxX = leftX > rightX ? leftX : rightX; in zoomOut()
139 qreal leftX = qPow(m_logBaseX, m_logLeftX + stepX); in move() local
141 qreal minX = leftX < rightX ? leftX : rightX; in move()
142 qreal maxX = leftX > rightX ? leftX : rightX; in move()
H A Dlogxlogypolardomain.cpp94 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomIn() local
96 qreal minX = leftX < rightX ? leftX : rightX; in zoomIn()
97 qreal maxX = leftX > rightX ? leftX : rightX; in zoomIn()
116 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomOut() local
118 qreal minX = leftX < rightX ? leftX : rightX; in zoomOut()
119 qreal maxX = leftX > rightX ? leftX : rightX; in zoomOut()
135 qreal leftX = qPow(m_logBaseX, m_logLeftX + stepX); in move() local
137 qreal minX = leftX < rightX ? leftX : rightX; in move()
138 qreal maxX = leftX > rightX ? leftX : rightX; in move()
H A Dlogxlogydomain.cpp95 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomIn() local
97 qreal minX = leftX < rightX ? leftX : rightX; in zoomIn()
98 qreal maxX = leftX > rightX ? leftX : rightX; in zoomIn()
119 qreal leftX = qPow(m_logBaseX, logLeftX); in zoomOut() local
121 qreal minX = leftX < rightX ? leftX : rightX; in zoomOut()
122 qreal maxX = leftX > rightX ? leftX : rightX; in zoomOut()
148 qreal leftX = qPow(m_logBaseX, m_logLeftX + stepX); in move() local
150 qreal minX = leftX < rightX ? leftX : rightX; in move()
151 qreal maxX = leftX > rightX ? leftX : rightX; in move()
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/draw/
H A DLineSeparator.java114 public void drawLine(PdfContentByte canvas, float leftX, float rightX, float y) { in drawLine() argument
119 w = (rightX - leftX) * getPercentage() / 100.0f; in drawLine()
126 s = rightX - leftX - w; in drawLine()
129 s = (rightX - leftX - w) / 2; in drawLine()
135 canvas.moveTo(s + leftX, y + offset); in drawLine()
136 canvas.lineTo(s + w + leftX, y + offset); in drawLine()
/dports/games/trackballs/trackballs-1.3.3/src/
H A Dmenusystem.cc52 void addText_Left(int code, int fontSize, int y0, const char *leftStr, int leftX, int maxX) { in addText_Left() argument
58 int width = drawSimpleText(leftStr, leftX, y0, fontSize, color[0], color[1], color[2], in addText_Left()
59 color[3], maxX > 0 ? maxX - leftX : 0); in addText_Left()
61 sarea->x0 = leftX; in addText_Left()
62 sarea->x1 = maxX > 0 ? std::min(leftX + width, maxX) : leftX + width; in addText_Left()
97 void addText_LeftRight(int code, int fontSize, int y0, const char *leftStr, int leftX, in addText_LeftRight() argument
104 drawSimpleText(leftStr, leftX, y0, fontSize, color[0], color[1], color[2], color[3]); in addText_LeftRight()
107 sarea->x0 = leftX; in addText_LeftRight()
/dports/net-im/qTox/qTox-1.17.4/src/widget/tool/
H A Dscreengrabberoverlayitem.cpp63 qreal leftX = chosenRect.x(); in paint() local
68 painter->drawRect(0, 0, leftX, self.height()); // Left of chosen in paint()
70 painter->drawRect(leftX, 0, chosenRect.width(), topY); // Top of chosen in paint()
71 painter->drawRect(leftX, bottomY, chosenRect.width(), in paint()
/dports/multimedia/obs-scrab/scrab-1.1/src/screenshot/
H A Dscreengrabberoverlayitem.cpp61 qreal leftX = chosenRect.x(); in paint() local
66 painter->drawRect(0, 0, leftX, self.height()); // Left of chosen in paint()
68 painter->drawRect(leftX, 0, chosenRect.width(), topY); // Top of chosen in paint()
69 painter->drawRect(leftX, bottomY, chosenRect.width(), in paint()
/dports/astro/marble/marble-21.12.3/src/lib/marble/graphicsview/
H A DBillboardGraphicsItem.cpp67 qint32 leftX = ( viewport->width() - m_size.width() ) / 2; in setProjection() local
69 leftX = x[i] - m_size.width(); in setProjection()
72 leftX = x[i] - ( m_size.width() / 2 ); in setProjection()
75 leftX = x[i]; in setProjection()
78 m_positions.append( QPoint( leftX, topY ) ); in setProjection()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/accessibility/
H A DBarChart.java75 int leftX = rect.x + 2 * GAP + valueSize.x; in addListeners()
83 gc.drawString(title, leftX + AXIS_WIDTH + center, rect.y + GAP); in addListeners()
86 gc.drawLine(leftX, rect.y + GAP + valueSize.y, leftX, bottomY); in addListeners()
89 gc.drawLine(leftX, y, leftX - GAP, y); in addListeners()
93 gc.drawLine(leftX, bottomY, rect.x + rect.width - GAP, bottomY); in addListeners()
97 int x1 = leftX + AXIS_WIDTH + GAP + i2 * (unitWidth + GAP); in addListeners()
105 int x2 = leftX + AXIS_WIDTH + GAP + i3 * (unitWidth + GAP); in addListeners()
116 int x3 = leftX + AXIS_WIDTH + GAP + selectedItem * (unitWidth + GAP); in addListeners()
410 int leftX = rect.x + 2 * GAP + valueSize.x; in itemBounds() local
416 int x = leftX + AXIS_WIDTH + GAP + index * (unitWidth + GAP); in itemBounds()
/dports/games/connectfive/connectFive/
H A DguiButton.cpp97 GLdouble leftX = xPos + 3; in draw() local
103 glVertex2d( leftX, topY ); in draw()
104 glVertex2d( leftX, botY ); in draw()
107 glVertex2d( leftX, topY ); in draw()
H A DguiDropDownMenu.cpp128 GLdouble leftX = xPos + 3; in draw() local
134 glVertex2d( leftX, topY ); in draw()
135 glVertex2d( leftX, botY ); in draw()
138 glVertex2d( leftX, topY ); in draw()
H A Dconnect.cpp897 GLdouble leftX = 0.0 - halfL; in drawCube() local
907 glTexCoord2d( 1.0, 1.0 ); glVertex3d( leftX, topY, backZ ); in drawCube()
910 glTexCoord2d( 1.0, 0.0 ); glVertex3d( leftX, botY, backZ ); in drawCube()
915 glTexCoord2d( 1.0, 0.0 ); glVertex3d( leftX, topY, frontZ ); in drawCube()
916 glTexCoord2d( 1.0, 1.0 ); glVertex3d( leftX, botY, frontZ ); in drawCube()
922 glTexCoord2d( 1.0, 0.0 ); glVertex3d( leftX, botY, frontZ ); in drawCube()
923 glTexCoord2d( 1.0, 1.0 ); glVertex3d( leftX, botY, backZ ); in drawCube()
930 glTexCoord2d( 0.0, 1.0 ); glVertex3d( leftX, topY, backZ ); in drawCube()
931 glTexCoord2d( 1.0, 0.0 ); glVertex3d( leftX, topY, frontZ ); in drawCube()
936 glTexCoord2d( 1.0, 0.0 ); glVertex3d( leftX, topY, backZ ); in drawCube()
[all …]
/dports/graphics/pixie/Pixie/src/ri/
H A DrendererClipping.cpp58 leftX = imagePlane; in beginClipping()
71 leftX = 1; in beginClipping()
110 if ((corner[COMP_X]*leftX + corner[COMP_Z]*leftZ + leftD) > 0) { in inFrustrum()
164 if ((P[COMP_X]*leftX + P[COMP_Z]*leftZ + leftD) < 0) { in inFrustrum()
195 if ((P[COMP_X]*leftX + P[COMP_Z]*leftZ + leftD) < 0) { in clipCode()
/dports/multimedia/kdenlive/kdenlive-21.12.3/src/assets/view/widgets/curves/bezier/
H A Dbeziersplineeditor.cpp178 double leftX = 0.; in mouseMoveEvent() local
185 leftX = -4; in mouseMoveEvent()
187 leftX = m_curve.getPoint(m_currentPointIndex - 1).p.x(); in mouseMoveEvent()
190 x = qBound(leftX, x, rightX); in mouseMoveEvent()
198 leftX = 1.0; in mouseMoveEvent()
201 x = qBound(leftX, x, rightX); in mouseMoveEvent()
217 leftX = point.p.x(); in mouseMoveEvent()
224 x = qBound(leftX, x, rightX); in mouseMoveEvent()
/dports/games/7kaa/7kaa-2.15.4p1/src/
H A DOBULLETA.cpp263 short leftX, leftY, rightX, rightY; in add_bullet_possible() local
291 leftX = rightX = xOffset; in add_bullet_possible()
301 leftX += leftXOffset; in add_bullet_possible()
303 if(leftX>=0 && leftX<targetWidth && leftY>=0 && leftY<targetHeight) in add_bullet_possible()
305 …if(bullet_path_possible(startXLoc, startYLoc, attackerMobileType, targetXLoc+leftX, targetYLoc+lef… in add_bullet_possible()
307 resultXLoc = targetXLoc+leftX; in add_bullet_possible()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/cuda/nn/
H A Dorganized_neighbor_search.hpp51 int leftX, rightX, leftY, rightY; in radiusSearch() local
58 this->getProjectedRadiusSearchBox(p_q_arg, squared_radius, leftX, rightX, leftY, rightY); in radiusSearch()
62 for (int x = leftX; (x <= rightX) && (nnn < max_nn_arg); x++) in radiusSearch()
252 int leftX, rightX, leftY, rightY; in nearestKSearch() local
253 this->getProjectedRadiusSearchBox(p_q_arg, squared_radius, leftX, rightX, leftY, rightY); in nearestKSearch()
255 leftX *=leftX; in nearestKSearch()
262 maxSearchDistance = std::max<int> (maxSearchDistance, leftX + leftY); in nearestKSearch()
263 maxSearchDistance = std::max<int> (maxSearchDistance, leftX + rightY); in nearestKSearch()
/dports/print/texlive-base/texlive-20150521-source/texk/ps2pk/
H A Dhints.c817 pel leftX,rightX; in ApplyContinuity() local
831 leftX = findXofY(left,i); in ApplyContinuity()
835 if(rightX <= leftX) in ApplyContinuity()
846 abovecenter = leftX + rightX; in ApplyContinuity()
854 belowcenter = leftX + rightX; in ApplyContinuity()
857 if( newcenter > 4*leftX ) in ApplyContinuity()
861 else if( newcenter < 4*leftX) in ApplyContinuity()
863 leftX = leftX - 1; in ApplyContinuity()
870 writeXofY(left,i,leftX); in ApplyContinuity()
872 if(leftX < R->xmin) {R->xmin = leftX;} in ApplyContinuity()
[all …]
/dports/net/tightvnc/vnc_unixsrc/Xvnc/lib/font/Type1/
H A Dhints.c820 pel leftX,rightX; local
834 leftX = findXofY(left,i);
838 if(rightX <= leftX)
849 abovecenter = leftX + rightX;
857 belowcenter = leftX + rightX;
860 if( newcenter > 4*leftX )
864 else if( newcenter < 4*leftX)
866 leftX = leftX - 1;
873 writeXofY(left,i,leftX);
875 if(leftX < R->xmin) {R->xmin = leftX;}
[all …]
/dports/math/grace/grace-5.1.25/T1lib/type1/
H A Dhints.c829 pel leftX,rightX; local
843 leftX = findXofY(left,i);
847 if(rightX <= leftX)
858 abovecenter = leftX + rightX;
866 belowcenter = leftX + rightX;
869 if( newcenter > 4*leftX )
873 else if( newcenter < 4*leftX)
875 leftX = leftX - 1;
882 writeXofY(left,i,leftX);
884 if(leftX < R->xmin) {R->xmin = leftX;}
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/awt/Graphics/
H A DLineClipTest.java324 int leftX = 0; in runTest() local
341 new Point(leftX + xOffset, clipY1 - 1 - yOffset), in runTest()
342 new Point(leftX + xOffset, topY + yOffset), in runTest()
369 new Point(leftX + xOffset, clipY1 + 1 + yOffset), in runTest()
370 new Point(leftX + xOffset, centerY + yOffset), in runTest()
371 new Point(leftX + xOffset, clipY2 - 1 - yOffset), in runTest()
403 new Point(leftX + xOffset, clipY2 + 1 + yOffset), in runTest()
404 new Point(leftX + xOffset, bottomY - yOffset), in runTest()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/awt/Graphics/
H A DLineClipTest.java324 int leftX = 0; in runTest() local
341 new Point(leftX + xOffset, clipY1 - 1 - yOffset), in runTest()
342 new Point(leftX + xOffset, topY + yOffset), in runTest()
369 new Point(leftX + xOffset, clipY1 + 1 + yOffset), in runTest()
370 new Point(leftX + xOffset, centerY + yOffset), in runTest()
371 new Point(leftX + xOffset, clipY2 - 1 - yOffset), in runTest()
403 new Point(leftX + xOffset, clipY2 + 1 + yOffset), in runTest()
404 new Point(leftX + xOffset, bottomY - yOffset), in runTest()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/awt/Graphics/
H A DLineClipTest.java324 int leftX = 0; in runTest() local
341 new Point(leftX + xOffset, clipY1 - 1 - yOffset), in runTest()
342 new Point(leftX + xOffset, topY + yOffset), in runTest()
369 new Point(leftX + xOffset, clipY1 + 1 + yOffset), in runTest()
370 new Point(leftX + xOffset, centerY + yOffset), in runTest()
371 new Point(leftX + xOffset, clipY2 - 1 - yOffset), in runTest()
403 new Point(leftX + xOffset, clipY2 + 1 + yOffset), in runTest()
404 new Point(leftX + xOffset, bottomY - yOffset), in runTest()

12345678910>>...12