Home
last modified time | relevance | path

Searched refs:stepWidth (Results 1 – 25 of 109) sorted by relevance

12345

/dports/graphics/cenon/Cenon/CropMarks/leftup.cenon/
H A Ddocument56 stepWidth = 7;
70 stepWidth = 7;
84 stepWidth = 7;
97 stepWidth = 7;
110 stepWidth = 7;
123 stepWidth = 7;
136 stepWidth = 7;
149 stepWidth = 7;
162 stepWidth = 7;
175 stepWidth = 7;
[all …]
/dports/graphics/cenon/Cenon/CropMarks/rightup.cenon/
H A Ddocument65 stepWidth = 7;
85 stepWidth = 7;
128 stepWidth = 7;
148 stepWidth = 7;
184 stepWidth = 7;
197 stepWidth = 7;
210 stepWidth = 7;
223 stepWidth = 7;
236 stepWidth = 7;
249 stepWidth = 7;
[all …]
/dports/graphics/kdiagram/kdiagram-2.8.0/src/KChart/
H A DKChartAbstractGrid.cpp95 qreal stepWidth, in adjustLowerUpperRange() argument
100 if ( adjustLower && !qFuzzyIsNull( fmod( start, stepWidth ) ) ) in adjustLowerUpperRange()
101 start = stepWidth * (_trunc( start / stepWidth ) + startAdjust); in adjustLowerUpperRange()
102 if ( adjustUpper && !qFuzzyIsNull( fmod( end, stepWidth ) ) ) in adjustLowerUpperRange()
103 end = stepWidth * (_trunc( end / stepWidth ) + endAdjust); in adjustLowerUpperRange()
113 result.stepWidth, in adjustedLowerUpperRange()
H A DKChartGridAttributes.cpp40 qreal stepWidth; member in GridAttributes::Private
55 stepWidth( 0.0 ), in Private()
133 void GridAttributes::setGridStepWidth( qreal stepWidth ) in setGridStepWidth() argument
135 d->stepWidth = stepWidth; in setGridStepWidth()
140 return d->stepWidth; in gridStepWidth()
H A DKChartAbstractCoordinatePlane.h383 , stepWidth( 1.0 ) in DataDimension()
398 , stepWidth( stepWidth_ ) in start()
421 (stepWidth == r.stepWidth) &&
434 qreal stepWidth; variable
/dports/graphics/kdiagram/kdiagram-2.8.0/src/KChart/Cartesian/
H A DKChartCartesianGrid.cpp206 if ( dimX.stepWidth ) { in calculateGrid()
228 if ( dimY.stepWidth ) { in calculateGrid()
231 l.first().stepWidth = dimX.stepWidth; in calculateGrid()
235 l.last().stepWidth = dimY.stepWidth; in calculateGrid()
295 if ( dim.stepWidth == 0.0 ) { in calculateGridXY()
317 dim.stepWidth, dim.subStepWidth, in calculateGridXY()
389 dim.stepWidth = dim.stepWidth ? dim.stepWidth : 1.0; in calculateGridXY()
399 qreal& steps, qreal& stepWidth, in calculateSteps() argument
424 stepWidth = testStepWidth; in calculateSteps()
436 qreal& stepWidth, qreal& subStepWidth, in calculateStepWidth() argument
[all …]
H A DKChartLeveyJenningsGrid.cpp62 if ( dimX.stepWidth ) { in calculateGrid()
77 if ( dimY.stepWidth ) { in calculateGrid()
80 l.first().stepWidth = dimX.stepWidth; in calculateGrid()
84 l.last().stepWidth = dimY.stepWidth; in calculateGrid()
114 if ( dim.stepWidth == 0.0 ) { in calculateGridXY()
136 dim.stepWidth, dim.subStepWidth, in calculateGridXY()
142 dim.stepWidth = dim.stepWidth ? dim.stepWidth : 1.0; in calculateGridXY()
151 qreal& steps, qreal& stepWidth, in calculateSteps() argument
176 stepWidth = testStepWidth; in calculateSteps()
187 qreal& stepWidth, qreal& subStepWidth, in calculateStepWidth() argument
[all …]
/dports/graphics/dilay/dilay-1.9.0/lib/src/tool/util/
H A Dstep.cpp17 float stepWidth; member
21 , stepWidth (0.0f) in Impl()
28 assert (this->stepWidth >= 0.0f); in step()
35 if (distance < this->stepWidth) in step()
39 this->position += direction * (this->stepWidth / distance); in step()
47 SETTER (float, ToolUtilStep, stepWidth)
/dports/astro/marble/marble-21.12.3/src/plugins/render/elevationprofilefloatitem/
H A DElevationProfilePlotAxis.cpp96 qreal stepWidth = niceIntervals.last(); in updateTicks() local
106 stepWidth = i; in updateTicks()
109 stepWidth /= factor; in updateTicks()
112 if ( fmod( m_minValue, stepWidth ) != 0 ) { in updateTicks()
113 offset = stepWidth - fmod( m_minValue, stepWidth ); in updateTicks()
120 val += stepWidth; in updateTicks()
121 pos += m_pixelLength / range() * stepWidth; in updateTicks()
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/resources/qml/Governikus/Workflow/+desktop/
H A DProgressCircle.qml15 readonly property int stepWidth: ApplicationModel.scaleFactor * 250
19 width: d.stepWidth * 4 + height
35 PropertyChanges { target: line; anchors.leftMargin: -d.stepWidth }
42 PropertyChanges { target: line; anchors.leftMargin: 2 * -d.stepWidth }
61 width: d.stepWidth * 2
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/GUI/Base/
H A DQLevelIndicator.sc29 this.setProperty(\stepWidth, val);
40 var stepWidth, length = max(this.bounds.width, this.bounds.height);
41 stepWidth = length / val;
42 stepWidth = stepWidth - (stepWidth < 3).if(1, 2);
43 this.stepWidth = stepWidth;
/dports/cad/leocad/leocad-21.06/qt/
H A Dlc_qhtmldialog.cpp11 ui->stepWidth->setValidator(new QIntValidator(0, 2048, ui->stepWidth)); in lcQHTMLDialog()
29 ui->stepWidth->setText(QString::number(mOptions->StepImagesWidth)); in lcQHTMLDialog()
56 mOptions->StepImagesWidth = ui->stepWidth->text().toInt(); in accept()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mohawk/
H A Dmyst_graphics.cpp553 dstRect.right = dstRect.left + step * stepWidth; in transitionSlideToLeft()
554 srcRect.left = srcRect.right - step * stepWidth; in transitionSlideToLeft()
574 dstRect.left = dstRect.right - step * stepWidth; in transitionSlideToRight()
575 srcRect.right = srcRect.left + step * stepWidth; in transitionSlideToRight()
595 dstRect.bottom = dstRect.top + step * stepWidth; in transitionSlideToTop()
596 srcRect.top = srcRect.bottom - step * stepWidth; in transitionSlideToTop()
617 dstRect.top = dstRect.bottom - step * stepWidth; in transitionSlideToBottom()
618 srcRect.bottom = srcRect.top + step * stepWidth; in transitionSlideToBottom()
634 uint32 stepWidth = width / steps; in transitionPartialToRight() local
639 dstRect.right = dstRect.left + step * stepWidth; in transitionPartialToRight()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/mohawk/
H A Dmyst_graphics.cpp562 dstRect.right = dstRect.left + step * stepWidth; in transitionSlideToLeft()
563 srcRect.left = srcRect.right - step * stepWidth; in transitionSlideToLeft()
583 dstRect.left = dstRect.right - step * stepWidth; in transitionSlideToRight()
584 srcRect.right = srcRect.left + step * stepWidth; in transitionSlideToRight()
604 dstRect.bottom = dstRect.top + step * stepWidth; in transitionSlideToTop()
605 srcRect.top = srcRect.bottom - step * stepWidth; in transitionSlideToTop()
626 dstRect.top = dstRect.bottom - step * stepWidth; in transitionSlideToBottom()
627 srcRect.bottom = srcRect.top + step * stepWidth; in transitionSlideToBottom()
643 uint32 stepWidth = width / steps; in transitionPartialToRight() local
648 dstRect.right = dstRect.left + step * stepWidth; in transitionPartialToRight()
[all …]
/dports/graphics/cenon/Cenon/graphicsUndo.subproj/
H A DStepWidthGraphicsChange.h36 - initGraphicView:aGraphicView stepWidth:(float)sWidth;
39 - (float)stepWidth;
H A DStepWidthGraphicsChange.m38 - initGraphicView:aGraphicView stepWidth:(float)sWidth
55 - (float)stepWidth
62 // widthValue = [(WidthGraphicsChange *)change stepWidth];
/dports/misc/mnn/MNN-1.2.0/tools/converter/source/caffe/
H A DPriorBox.cpp62 prior->stepWidth = caffePrior.step(); in run()
65 prior->stepWidth = caffePrior.step_w(); in run()
68 prior->stepWidth = 0; in run()
/dports/misc/mnn/MNN-1.2.0/source/shape/
H A DShapePriorbox.cpp36 float stepWidth = layer->stepWidth(); in onComputeSize() local
48 float stepW = stepWidth; in onComputeSize()
/dports/audio/qmidiarp/qmidiarp-qmidiarp-0.6.5/src/
H A Dmidiarp.cpp89 stepWidth = 1.0; // stepWidth relative to global queue stepWidth in tcl_record_arg()
409 stepWidth *= .5;
412 stepWidth *= 2.0;
415 stepWidth = 1.0;
486 *length = clip(len * stepWidth * (double)TPQN
491 grooveTmp = TPQN * stepWidth * grooveTick * 0.01;
497 arpTick += stepWidth * TPQN + grooveTmp;
505 *tick = arpTick + clip(stepWidth * 0.25 * (double)randomTick, 0,
598 stepWidth = 1.0;
/dports/graphics/cenon/Cenon/GraphicObjects.subproj/
H A DVGroup.h46 float stepWidth; // stepWidth the color will change by graduate/radial filling variable
67 - (float)stepWidth;
H A DVRectangle.h51 float stepWidth; // stepWidth the color will change by graduate/radial filling variable
77 - (float)stepWidth;
H A DVPolyLine.h46 float stepWidth; // stepWidth the color will change by graduate/radial filling variable
67 - (float)stepWidth;
H A DVArc.h56 float stepWidth; // stepWidth the color will change by graduate/radial filling variable
78 - (float)stepWidth;
/dports/graphics/cenon/Cenon/Library/Cenon/Projects/Cenon.cenon/
H A Ddocument34 stepWidth = 3;
895 stepWidth = 0;
954 stepWidth = 0;
1013 stepWidth = 0;
1248 stepWidth = 0;
1298 stepWidth = 0;
1357 stepWidth = 0;
1425 stepWidth = 0;
1493 stepWidth = 0;
1759 stepWidth = 0;
[all …]
/dports/games/openjk/OpenJK-07675e2/codeJK2/cgame/
H A Dcg_effects.cpp765 float stepWidth, stepHeight; in CG_DoGlass() local
804 stepWidth = 0.2f; in CG_DoGlass()
816 stepWidth = 0.1f; in CG_DoGlass()
823 for ( x = 0.0f, t = 0; x < 1.0f; x += stepWidth, t++ ) in CG_DoGlass()
865 VectorSet2( biPoints[1], xx + stepWidth, zz ); in CG_DoGlass()
885 VectorSet2( biPoints[2], xx + stepWidth, zz + stepHeight); in CG_DoGlass()

12345