Home
last modified time | relevance | path

Searched refs:arrowSize (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/dports/math/scilab/scilab-6.1.1/scilab/modules/renderer/src/java/org/scilab/modules/renderer/JoGLView/arrowDrawing/
H A DArrowDrawer.java127 if (arrowSize < 0.0) { in computeArrowPixelSize()
225arrowSize = computeArrowPixelSize(parentAxes, vertices, segmentIndices, numSegments, arrowSize, li… in drawArrows()
482 if (arrowSize < 0.0) { in computeArrowPixelSize()
484 arrowSize *= thickness; in computeArrowPixelSize()
485 arrowSize = -arrowSize * averageNorm * REDUCTION_RATIO_DEPENDING; in computeArrowPixelSize()
497 arrowSize *= thickness; in computeArrowPixelSize()
498arrowSize = arrowSize * Math.min(axesDims[0], axesDims[1]) * SEGS_REDUCTION_RATIO / maxRange; in computeArrowPixelSize()
501 arrowSize *= thickness; in computeArrowPixelSize()
502 arrowSize = arrowSize * Math.min(axesDims[0], axesDims[1]) * REDUCTION_RATIO; in computeArrowPixelSize()
505 return arrowSize; in computeArrowPixelSize()
[all …]
/dports/x11/kf5-kdelibs4support/kdelibs4support-5.89.0/src/kdeui/
H A Dkarrowbutton.cpp62 const unsigned int arrowSize = 8; in paintEvent() local
78 if (static_cast<unsigned int>(width()) < arrowSize + margin || in paintEvent()
79 static_cast<unsigned int>(height()) < arrowSize + margin) { in paintEvent()
85 x = (width() - arrowSize) / 2; in paintEvent()
86 y = height() - (arrowSize + margin); in paintEvent()
88 x = (width() - arrowSize) / 2; in paintEvent()
91 x = width() - (arrowSize + margin); in paintEvent()
92 y = (height() - arrowSize) / 2; in paintEvent()
95 y = (height() - arrowSize) / 2; in paintEvent()
113 opt.rect = QRect(x, y, arrowSize, arrowSize); in paintEvent()
/dports/converters/wkhtmltopdf/qt-5db36ec/examples/graphicsview/elasticnodes/
H A Dedge.cpp53 : arrowSize(10) in Edge()
104 qreal extra = (penWidth + arrowSize) / 2.0; in boundingRect()
136 QPointF sourceArrowP1 = sourcePoint + QPointF(sin(angle + Pi / 3) * arrowSize, in paint()
137 cos(angle + Pi / 3) * arrowSize); in paint()
138 QPointF sourceArrowP2 = sourcePoint + QPointF(sin(angle + Pi - Pi / 3) * arrowSize, in paint()
139 cos(angle + Pi - Pi / 3) * arrowSize); in paint()
140 QPointF destArrowP1 = destPoint + QPointF(sin(angle - Pi / 3) * arrowSize, in paint()
141 cos(angle - Pi / 3) * arrowSize); in paint()
142 QPointF destArrowP2 = destPoint + QPointF(sin(angle - Pi + Pi / 3) * arrowSize, in paint()
143 cos(angle - Pi + Pi / 3) * arrowSize); in paint()
/dports/cad/opencascade/opencascade-7.6.0/samples/qt/FuncDemo/src/
H A Dedge.cpp55 : arrowSize(10) in Edge()
106 qreal extra = (penWidth + arrowSize) / 2.0; in boundingRect()
138 QPointF sourceArrowP1 = sourcePoint + QPointF(sin(angle + Pi / 3) * arrowSize, in paint()
139 cos(angle + Pi / 3) * arrowSize); in paint()
140 QPointF sourceArrowP2 = sourcePoint + QPointF(sin(angle + Pi - Pi / 3) * arrowSize, in paint()
141 cos(angle + Pi - Pi / 3) * arrowSize); in paint()
142 QPointF destArrowP1 = destPoint + QPointF(sin(angle - Pi / 3) * arrowSize, in paint()
143 cos(angle - Pi / 3) * arrowSize); in paint()
144 QPointF destArrowP2 = destPoint + QPointF(sin(angle - Pi + Pi / 3) * arrowSize, in paint()
145 cos(angle - Pi + Pi / 3) * arrowSize); in paint()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtbase/examples/widgets/graphicsview/elasticnodes/
H A Dedge.cpp108 qreal extra = (penWidth + arrowSize) / 2.0; in boundingRect()
138 QPointF sourceArrowP1 = sourcePoint + QPointF(sin(angle + M_PI / 3) * arrowSize, in paint()
139 cos(angle + M_PI / 3) * arrowSize); in paint()
140 QPointF sourceArrowP2 = sourcePoint + QPointF(sin(angle + M_PI - M_PI / 3) * arrowSize, in paint()
141 cos(angle + M_PI - M_PI / 3) * arrowSize); in paint()
142 QPointF destArrowP1 = destPoint + QPointF(sin(angle - M_PI / 3) * arrowSize, in paint()
143 cos(angle - M_PI / 3) * arrowSize); in paint()
144 QPointF destArrowP2 = destPoint + QPointF(sin(angle - M_PI + M_PI / 3) * arrowSize, in paint()
145 cos(angle - M_PI + M_PI / 3) * arrowSize); in paint()
/dports/deskutils/mindforger/mindforger-1.52.0/app/src/qt/navigator/
H A Dedge.cpp82 : arrowSize(10) in NavigatorEdge()
130 qreal extra = (penWidth + arrowSize) / 2.0; in boundingRect()
204 QPointF sourceArrowP1 = srcPoint + QPointF(sin(angle + PI / 3) * arrowSize, in paintLineWithTwoArrows()
205 cos(angle + PI / 3) * arrowSize); in paintLineWithTwoArrows()
206 QPointF sourceArrowP2 = srcPoint + QPointF(sin(angle + PI - PI / 3) * arrowSize, in paintLineWithTwoArrows()
207 cos(angle + PI - PI / 3) * arrowSize); in paintLineWithTwoArrows()
208 QPointF destArrowP1 = dstPoint + QPointF(sin(angle - PI / 3) * arrowSize, in paintLineWithTwoArrows()
209 cos(angle - PI / 3) * arrowSize); in paintLineWithTwoArrows()
210 QPointF destArrowP2 = dstPoint + QPointF(sin(angle - PI + PI / 3) * arrowSize, in paintLineWithTwoArrows()
211 cos(angle - PI + PI / 3) * arrowSize); in paintLineWithTwoArrows()
/dports/graphics/pinta/pinta-1.7.1/Pinta.Tools/Editable/EditEngines/
H A DArrowedEditEngine.cs44 private ToolBarComboBox arrowSize; field in Pinta.Tools.ArrowedEditEngine
232 tb.Remove(arrowSize); in HandleBuildToolBar()
252 tb.Add(arrowSize); in HandleBuildToolBar()
296 tb.Remove(arrowSize); in HandleBuildToolBar()
316 tb.Add(arrowSize); in HandleBuildToolBar()
361 if (arrowSize == null) in HandleBuildToolBar()
363 arrowSize = new ToolBarComboBox(65, 7, true, in HandleBuildToolBar()
367 arrowSize.ComboBox.Changed += (o, e) => in HandleBuildToolBar()
369 if (arrowSize.ComboBox.ActiveText.Length < 1) in HandleBuildToolBar()
378 if (arrowSize.ComboBox.ActiveText == "-") in HandleBuildToolBar()
[all …]
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Ddrawing.c479 if ( arrowSize < 4 ) arrowSize = 4; in Nlm_SetDefArrowSize()
480 if ( arrowSize > 16 ) arrowSize = 16; in Nlm_SetDefArrowSize()
850 arrowSize = pdata->arrowSize; in RecDrawProc()
1005 arrowSize = pdata->arrowSize*scaleX/2; in RecGetLimitsProc()
1010 arrowSize = pdata->arrowSize*scaleX/2; in RecGetLimitsProc()
1015 arrowSize = pdata->arrowSize*scaleY/2; in RecGetLimitsProc()
1020 arrowSize = pdata->arrowSize*scaleY/2; in RecGetLimitsProc()
1595 arrowSize = pdata->arrowSize; in HLineDrawProc()
1792 arrowSize = pdata->arrowSize; in VLineDrawProc()
1986 arrowSize = (Int2)pdata->arrowSize; in LineDrawProc()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/src/java/org/scilab/modules/graphic_objects/vectfield/
H A DArrow.java42 private double arrowSize; field in Arrow
49 arrowSize = -1.0; in Arrow()
127 return arrowSize; in getArrowSize()
133 public UpdateStatus setArrowSize(Double arrowSize) { in setArrowSize() argument
134 this.arrowSize = arrowSize; in setArrowSize()
/dports/graphics/qvge/qvge-0.6.3/src/qvge/
H A DCDirectEdge.cpp169 double arrowSize = getVisibleWeight() + ARROW_SIZE; in onParentGeometryChanged() local
193 createCurvedPath(true, l, QLineF(p1c, p2c), p1, lp, rp, p2, arrowSize); in onParentGeometryChanged()
204 bool isArrow = (len > arrowSize * 2); in onParentGeometryChanged()
209 m_itemFlags & CF_Start_Arrow ? -arrowSize : 0, in onParentGeometryChanged()
210 m_itemFlags & CF_End_Arrow ? arrowSize : 0); in onParentGeometryChanged()
246 …ateCurvedPath(intersected, l, QLineF(p1c, p2c), p1, m_controlPoint, m_controlPoint, p2, arrowSize); in onParentGeometryChanged()
278 double arrowSize) in createCurvedPath() argument
302 qreal arrowStart = m_shapeCachePath.percentAtLength(arrowSize); in createCurvedPath()
308 qreal arrowStart = m_shapeCachePath.percentAtLength(m_shapeCachePath.length() - arrowSize); in createCurvedPath()
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/src/legacy/core_plugins/metrics/public/visualizations/components/
H A D_timeseries_chart.scss80 $temp-arrowSize: $euiSizeM;
81 width: $temp-arrowSize;
82 height: $temp-arrowSize;
90 margin-right: (($temp-arrowSize/2) + 1px) * -1;
94 margin-left: (($temp-arrowSize/2) + 1px) * -1;
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphics/src/c/getHandleProperty/
H A Dget_arrow_size_property.c38 double arrowSize = 0.0; in get_arrow_size_property() local
39 double* pdblArrowSize = &arrowSize; in get_arrow_size_property()
49 return sciReturnDouble(arrowSize); in get_arrow_size_property()
H A Dset_arrow_size_property.c41 double arrowSize = 0.; in set_arrow_size_property() local
49 arrowSize = ((double*)_pvData)[0]; in set_arrow_size_property()
51 status = setGraphicObjectProperty(iObjUID, __GO_ARROW_SIZE__, &arrowSize, jni_double, 1); in set_arrow_size_property()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtbase/examples/widgets/graphicsview/diagramscene/
H A Darrow.cpp106 qreal arrowSize = 20; in paint() local
130 QPointF arrowP1 = line().p1() + QPointF(sin(angle + M_PI / 3) * arrowSize, in paint()
131 cos(angle + M_PI / 3) * arrowSize); in paint()
132 QPointF arrowP2 = line().p1() + QPointF(sin(angle + M_PI - M_PI / 3) * arrowSize, in paint()
133 cos(angle + M_PI - M_PI / 3) * arrowSize); in paint()
/dports/converters/wkhtmltopdf/qt-5db36ec/examples/graphicsview/diagramscene/
H A Darrow.cpp99 qreal arrowSize = 20; in paint() local
127 QPointF arrowP1 = line().p1() + QPointF(sin(angle + Pi / 3) * arrowSize, in paint()
128 cos(angle + Pi / 3) * arrowSize); in paint()
129 QPointF arrowP2 = line().p1() + QPointF(sin(angle + Pi - Pi / 3) * arrowSize, in paint()
130 cos(angle + Pi - Pi / 3) * arrowSize); in paint()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DDesignerHelpers.cs784 …eft + (bounds.Width - arrowSize.Width) / 2, bounds.Top, bounds.Left + (bounds.Width - arrowSize.Wi… in GetScrollIndicatorPath()
785 … + (bounds.Width - arrowSize.Width) / 2, bounds.Top + arrowSize.Height, bounds.Left + (bounds.Widt… in GetScrollIndicatorPath()
786 …s.Left + (bounds.Width - arrowSize.Width) / 2 + arrowSize.Width, bounds.Top + midPoint, bounds.Lef… in GetScrollIndicatorPath()
790 …Width - arrowSize.Width) / 2, bounds.Top + midPoint, bounds.Left + (bounds.Width - arrowSize.Width… in GetScrollIndicatorPath()
791 …s.Width - arrowSize.Width) / 2 + arrowSize.Width, bounds.Top + arrowSize.Height, bounds.Left + (bo… in GetScrollIndicatorPath()
792 …(bounds.Left + (bounds.Width - arrowSize.Width) / 2 + arrowSize.Width, bounds.Top, bounds.Left + (… in GetScrollIndicatorPath()
803 …bounds.Top + (bounds.Height - arrowSize.Height) / 2, bounds.Left + arrowSize.Width, bounds.Top + (… in GetScrollIndicatorPath()
804arrowSize.Width, bounds.Top + (bounds.Height - arrowSize.Height) / 2, bounds.Left + midPoint, boun… in GetScrollIndicatorPath()
805 …ounds.Top + (bounds.Height - arrowSize.Height) / 2 + arrowSize.Height, bounds.Left, bounds.Top + (… in GetScrollIndicatorPath()
809 … (bounds.Height - arrowSize.Height) / 2, bounds.Left + arrowSize.Width, bounds.Top + (bounds.Heigh… in GetScrollIndicatorPath()
[all …]
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/lib/engine/
H A Drs_dimension.cpp244 double arrowSize = getArrowSize()*dimscale; in updateCreateHorizontalTextDimensionLine() local
310 bool outsideArrows = (textIntersectionLength+3*arrowSize) > distance; in updateCreateHorizontalTextDimensionLine()
321 RS_Vector dir = RS_Vector::polar(arrowSize*2, dimensionLine->getAngle1()); in updateCreateHorizontalTextDimensionLine()
328 distH.setPolar(textIntersectionLength/2.0+arrowSize*2+distance/2.0, in updateCreateHorizontalTextDimensionLine()
348 arrowSize); in updateCreateHorizontalTextDimensionLine()
359 arrowSize); in updateCreateHorizontalTextDimensionLine()
465 double arrowSize = getArrowSize()*dimscale; in updateCreateAlignedTextDimensionLine() local
468 bool outsideArrows = (distance<arrowSize*2.5); in updateCreateAlignedTextDimensionLine()
542 RS_Vector dir = RS_Vector::polar(arrowSize*2, arrowAngle2); in updateCreateAlignedTextDimensionLine()
558 arrowSize); in updateCreateAlignedTextDimensionLine()
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/src/components/popover/
H A DpopperUtils.ts89 const arrowSize = data.arrowElement.clientWidth;
96 const arrowOffsetSize = Math.round(arrowSize / 2 / Math.sqrt(2));
102 data.offsets.arrow[offsetSide] = data.offsets.popper[len] - arrowSize + arrowOffsetSize;
/dports/databases/py-qt5-sql/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/multimedia/py-qt5-multimediawidgets/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/multimedia/py-qt5-multimedia/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/www/py-qt5-webkit/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/www/py-qt5-webchannel/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/www/py-qt5-webkitwidgets/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)
/dports/www/py-qt5-websockets/PyQt5-5.15.4/examples/graphicsview/
H A Delasticnodes.py64 self.arrowSize = 10.0
117 extra = (penWidth + self.arrowSize) / 2.0
142 sourceArrowP1 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi / 3) * self.arrowSize,
143 … math.cos(angle + Edge.Pi / 3) * self.arrowSize)
144 …ourceArrowP2 = self.sourcePoint + QPointF(math.sin(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize,
145 … math.cos(angle + Edge.Pi - Edge.Pi / 3) * self.arrowSize);
146 destArrowP1 = self.destPoint + QPointF(math.sin(angle - Edge.Pi / 3) * self.arrowSize,
147 … math.cos(angle - Edge.Pi / 3) * self.arrowSize)
148 … destArrowP2 = self.destPoint + QPointF(math.sin(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize,
149 … math.cos(angle - Edge.Pi + Edge.Pi / 3) * self.arrowSize)

12345678910>>...13