Home
last modified time | relevance | path

Searched refs:xTransform (Results 1 – 25 of 48) sorted by relevance

12

/dports/math/qtiplot-doc/qtiplot-0.9.8.9/qtiplot/src/plot2D/
H A DQwtBarCurve.cpp88 dx = xMap.xTransform(x(from + 1)) - xMap.xTransform(x(from)); in draw()
90 double min = xMap.xTransform(x(i + 1)) - xMap.xTransform(x(i)); in draw()
96 dy = abs(yMap.xTransform(y(from + 1)) - yMap.xTransform(y(from))); in draw()
98 double min = yMap.xTransform(y(i + 1)) - yMap.xTransform(y(i)); in draw()
110 const double px = xMap.xTransform(x(i)); in draw()
111 const double py = yMap.xTransform(y(i)); in draw()
123 rect.setBottom(yMap.xTransform(sOffset)); in draw()
242 double dx = xMap.xTransform(x(1)) - xMap.xTransform(x(0)); in dataOffset()
245 double min = xMap.xTransform(x(i)) - xMap.xTransform(x(i - 1)); in dataOffset()
256 double dy = yMap.xTransform(y(1)) - yMap.xTransform(y(0)); in dataOffset()
[all …]
H A DErrorBarsCurve.cpp146 const double xi = xMap.xTransform(xval + d_xOffset); in drawErrorBars()
147 const double yi = yMap.xTransform(yval + d_yOffset); in drawErrorBars()
157 const double yh = yMap.xTransform(yval + error); in drawErrorBars()
158 const double yl = yMap.xTransform(yval - error); in drawErrorBars()
177 const double xp = xMap.xTransform(xval + error); in drawErrorBars()
178 const double xm = xMap.xTransform(xval - error); in drawErrorBars()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgrobot/
H A Dosgrobot.cpp226 xTransform->addChild(joint); in buildJoint1()
248 xTransform->setMatrix(xRot); in buildJoint2()
251 xTransform->addChild(joint); in buildJoint2()
272 xTransform->setMatrix(xRot); in buildTube2()
274 xTransform->addChild(tube3); in buildTube2()
292 xTransform->setMatrix(xRot); in buildJoint3()
327 xTransform->addChild(tube4); in buildJoint4()
329 xTransform->setMatrix(xRot); in buildJoint4()
379 createAxis(xTransform); in buildJoint5()
403 createAxis(xTransform); in buildJoint6()
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgrobot/
H A Dosgrobot.cpp226 xTransform->addChild(joint); in buildJoint1()
248 xTransform->setMatrix(xRot); in buildJoint2()
251 xTransform->addChild(joint); in buildJoint2()
272 xTransform->setMatrix(xRot); in buildTube2()
274 xTransform->addChild(tube3); in buildTube2()
292 xTransform->setMatrix(xRot); in buildJoint3()
327 xTransform->addChild(tube4); in buildJoint4()
329 xTransform->setMatrix(xRot); in buildJoint4()
379 createAxis(xTransform); in buildJoint5()
403 createAxis(xTransform); in buildJoint6()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/extensions/source/propctrlr/
H A Dunourl.cxx44 Reference< XURLTransformer > xTransform; in UnoURL() local
49 xTransform.set( URLTransformer::create(comphelper::getComponentContext(_rxORB)) ); in UnoURL()
50 … OSL_ENSURE( xTransform.is(), "UnoURL::UnoURL: could not create a URL transformer!" ); in UnoURL()
51 if ( xTransform.is() ) in UnoURL()
52 xTransform->parseStrict( m_aURL ); in UnoURL()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/extensions/source/propctrlr/
H A Dunourl.cxx43 Reference< XURLTransformer > xTransform; in UnoURL() local
48 xTransform.set( URLTransformer::create(comphelper::getComponentContext(_rxORB)) ); in UnoURL()
49 … OSL_ENSURE( xTransform.is(), "UnoURL::UnoURL: could not create a URL transformer!" ); in UnoURL()
50 if ( xTransform.is() ) in UnoURL()
51 xTransform->parseStrict( m_aURL ); in UnoURL()
/dports/devel/kyra/kyra/engine/
H A Dimnode.h103 int X( int window=0 ) { GLASSERT( ( xTransform[window].x.v & 0xffff ) == 0 );
104 return xTransform[window].x.ToInt(); }
106 int Y( int window=0 ) { GLASSERT( ( xTransform[window].y.v & 0xffff ) == 0 );
107 return xTransform[window].y.ToInt(); }
110 GlFixed XScale( int window=0 ) { return xTransform[window].xScale; }
112 GlFixed YScale( int window=0 ) { return xTransform[window].yScale; }
115 const KrMatrix2& Transform( int window=0 ) { return xTransform[window]; }
282 const KrMatrix2& XTransform( int window ) { return xTransform[window]; } in XTransform()
321 KrMatrix2 xTransform[KR_MAX_WINDOWS]; // (x,y) relative to parent (set) variable
H A Dimnode.cpp56 xTransform[i].Set(); in KrImNode()
116 if ( x != xTransform[i].x || y != xTransform[i].y ) in SetPos()
118 xTransform[i].x = x; in SetPos()
119 xTransform[i].y = y; in SetPos()
145 if ( xScale != xTransform[i].xScale || yScale != xTransform[i].yScale ) in SetScale()
147 xTransform[i].xScale = xScale; in SetScale()
148 xTransform[i].yScale = yScale; in SetScale()
174 if ( xForm != xTransform[i] ) in SetTransform()
176 xTransform[i] = xForm; in SetTransform()
318 compositeXForm[i] = xTransform[i]; in CalcTransform()
/dports/science/scidavis/scidavis-2.4.0/libscidavis/src/
H A DQwtBarCurve.cpp74 ref1 = yMap.xTransform(1e-100); // smallest positive value for log scales in draw()
76 if (yMap.xTransform(yMap.s1()) < ref1) in draw()
77 ref1 = yMap.xTransform(yMap.s1()); in draw()
78 if (yMap.xTransform(yMap.s2()) > ref2) in draw()
79 ref2 = yMap.xTransform(yMap.s2()); in draw()
81 ref1 = xMap.xTransform(1e-100); in draw()
83 if (xMap.xTransform(xMap.s1()) > ref1) in draw()
84 ref1 = xMap.xTransform(xMap.s1()); in draw()
85 if (xMap.xTransform(xMap.s2()) < ref2) in draw()
86 ref2 = xMap.xTransform(xMap.s2()); in draw()
/dports/math/vtk9/VTK-9.1.0/Rendering/Annotation/
H A DvtkAxesActor.cxx598 vtkTransform* xTransform = vtkTransform::New(); in UpdateProps() local
602 xTransform->RotateZ(-90); in UpdateProps()
605 xTransform->Scale(scale[0], scale[0], scale[0]); in UpdateProps()
613 this->XAxisShaft->SetScale(xTransform->GetScale()); in UpdateProps()
614 this->XAxisShaft->SetPosition(xTransform->GetPosition()); in UpdateProps()
627 xTransform->Identity(); in UpdateProps()
631 xTransform->RotateZ(-90); in UpdateProps()
642 xTransform->Scale( in UpdateProps()
655 this->XAxisTip->SetScale(xTransform->GetScale()); in UpdateProps()
656 this->XAxisTip->SetPosition(xTransform->GetPosition()); in UpdateProps()
[all …]
/dports/math/qtiplot-doc/qtiplot-0.9.8.9/3rdparty/qwt/src/
H A Dqwt_plot_curve.cpp740 p.setX( xMap.xTransform(x(i)) ); in drawLines()
741 p.setY( yMap.xTransform(y(i)) ); in drawLines()
793 QPointF pp( xMap.xTransform(x(from)), yMap.xTransform(y(from)) ); in drawLines()
799 const QPointF pi(xMap.xTransform(x(i)), yMap.xTransform(y(i))); in drawLines()
815 const QPointF pi(xMap.xTransform(x(i)), yMap.xTransform(y(i))); in drawLines()
885 QPointF pp( xMap.xTransform(x(from)), yMap.xTransform(y(from)) ); in drawDots()
893 const QPointF pi(xMap.xTransform(x(i)), yMap.xTransform(y(i))); in drawDots()
916 const QPointF p( xMap.xTransform(x(i)), yMap.xTransform(y(i)) ); in drawDots()
927 const double xi = xMap.xTransform(x(i)); in drawDots()
972 const double xi = xMap.xTransform(x(i)); in drawSteps()
[all …]
H A Dqwt_scale_map.h76 double xTransform(double x) const;
155 inline double QwtScaleMap::xTransform(double s) const in xTransform() function
190 return qRound(xTransform(s)); in transform()
H A Dqwt_plot_svgitem.cpp280 const double x1 = xMap.xTransform(rect.left()); in viewBox()
281 const double x2 = xMap.xTransform(rect.right()); in viewBox()
282 const double y1 = yMap.xTransform(rect.bottom()); in viewBox()
283 const double y2 = yMap.xTransform(rect.top()); in viewBox()
/dports/math/vtk8/VTK-8.2.0/Rendering/Annotation/
H A DvtkAxesActor.cxx643 vtkTransform *xTransform = vtkTransform::New(); in UpdateProps() local
647 xTransform->RotateZ( -90 ); in UpdateProps()
650 xTransform->Scale( scale[0], scale[0], scale[0] ); in UpdateProps()
654 xTransform->Translate( -(bounds[0]+bounds[1])/2, in UpdateProps()
664 this->XAxisShaft->SetScale( xTransform->GetScale() ); in UpdateProps()
679 xTransform->Identity(); in UpdateProps()
683 xTransform->RotateZ( -90 ); in UpdateProps()
694 xTransform->Scale( this->NormalizedTipLength[0], in UpdateProps()
706 xTransform->Translate( -(bounds[0]+bounds[1])/2, in UpdateProps()
716 this->XAxisTip->SetScale( xTransform->GetScale() ); in UpdateProps()
[all …]
/dports/math/vtk6/VTK-6.2.0/Rendering/Annotation/
H A DvtkAxesActor.cxx643 vtkTransform *xTransform = vtkTransform::New(); in UpdateProps() local
647 xTransform->RotateZ( -90 ); in UpdateProps()
650 xTransform->Scale( scale[0], scale[0], scale[0] ); in UpdateProps()
654 xTransform->Translate( -(bounds[0]+bounds[1])/2, in UpdateProps()
664 this->XAxisShaft->SetScale( xTransform->GetScale() ); in UpdateProps()
679 xTransform->Identity(); in UpdateProps()
683 xTransform->RotateZ( -90 ); in UpdateProps()
694 xTransform->Scale( this->NormalizedTipLength[0], in UpdateProps()
706 xTransform->Translate( -(bounds[0]+bounds[1])/2, in UpdateProps()
716 this->XAxisTip->SetScale( xTransform->GetScale() ); in UpdateProps()
[all …]
/dports/x11-toolkits/qwt5-qt5/qwt5-qt5-2a9f1ae2/src/
H A Dqwt_scale_map.h81 double xTransform(double x) const;
160 inline double QwtScaleMap::xTransform(double s) const in xTransform() function
195 return qRound(xTransform(s)); in transform()
H A Dqwt_plot_svgitem.cpp280 const double x1 = xMap.xTransform(rect.left()); in viewBox()
281 const double x2 = xMap.xTransform(rect.right()); in viewBox()
282 const double y1 = yMap.xTransform(rect.bottom()); in viewBox()
283 const double y2 = yMap.xTransform(rect.top()); in viewBox()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sd/source/filter/eppt/
H A Dpptx-animations.cxx376 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in extractNodeType() local
377 if (xTransform.is()) in extractNodeType()
379 if (xTransform->getTransformType() == AnimationTransformType::SCALE) in extractNodeType()
847 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in WriteAnimationNodeAnimate() local
848 if (xTransform.is()) in WriteAnimationNodeAnimate()
851 if (xTransform->getBy() >>= value) in WriteAnimationNodeAnimate()
857 if (xTransform->getFrom() >>= value) in WriteAnimationNodeAnimate()
863 if (xTransform->getTo() >>= value) in WriteAnimationNodeAnimate()
950 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in WriteAnimationNodeAnimateInside() local
954 if (xTransform.is() && xTransform->getTransformType() == AnimationTransformType::ROTATE) in WriteAnimationNodeAnimateInside()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svgio/source/svgreader/
H A Dsvgmasknode.cxx246 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
253 … aMaskTarget = drawinglayer::primitive2d::Primitive2DContainer { xTransform }; in apply()
260 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
265 … aMaskTarget = drawinglayer::primitive2d::Primitive2DContainer { xTransform }; in apply()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svgio/source/svgreader/
H A Dsvgmasknode.cxx244 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
251 … aMaskTarget = drawinglayer::primitive2d::Primitive2DContainer { xTransform }; in apply()
258 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
263 … aMaskTarget = drawinglayer::primitive2d::Primitive2DContainer { xTransform }; in apply()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sd/source/filter/eppt/
H A Dpptx-animations.cxx387 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in extractNodeType() local
388 if (xTransform.is()) in extractNodeType()
390 if (xTransform->getTransformType() == AnimationTransformType::SCALE) in extractNodeType()
861 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in WriteAnimationNodeAnimate() local
862 if (xTransform.is()) in WriteAnimationNodeAnimate()
865 if (xTransform->getBy() >>= value) in WriteAnimationNodeAnimate()
871 if (xTransform->getFrom() >>= value) in WriteAnimationNodeAnimate()
877 if (xTransform->getTo() >>= value) in WriteAnimationNodeAnimate()
963 Reference<XAnimateTransform> xTransform(rXNode, UNO_QUERY); in WriteAnimationNodeAnimateInside() local
967 if (xTransform.is() && xTransform->getTransformType() == AnimationTransformType::ROTATE) in WriteAnimationNodeAnimateInside()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sfx2/source/control/
H A Drequest.cxx76 css::uno::Reference< css::util::XURLTransformer > xTransform; member
169 … pImpl->xTransform = util::URLTransformer::create(comphelper::getProcessComponentContext()); in SfxRequest()
210 … pImpl->xTransform = util::URLTransformer::create(comphelper::getProcessComponentContext()); in SfxRequest()
368 xTransform->parseStrict(aURL); in Record()
396 if (pImpl->xRecorder && !pImpl->xTransform) in Record_Impl()
397 pImpl->xTransform = util::URLTransformer::create(comphelper::getProcessComponentContext()); in Record_Impl()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sd/source/filter/ppt/
H A Dpptinanimations.cxx1829 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateScaleContainer() local
1832 if( !(pAtom && xTransform.is()) ) in importAnimateScaleContainer()
1835 xTransform->setTransformType( AnimationTransformType::SCALE ); in importAnimateScaleContainer()
1863 xTransform->setFrom( makeAny( aPair ) ); in importAnimateScaleContainer()
1871 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
1883 xTransform->setBy( makeAny( aPair ) ); in importAnimateScaleContainer()
1892 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
1927 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateRotationContainer() local
1930 if( !(pAtom && xTransform.is()) ) in importAnimateRotationContainer()
1933 xTransform->setTransformType( AnimationTransformType::ROTATE ); in importAnimateRotationContainer()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sd/source/filter/ppt/
H A Dpptinanimations.cxx1827 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateScaleContainer() local
1830 if( !(pAtom && xTransform.is()) ) in importAnimateScaleContainer()
1833 xTransform->setTransformType( AnimationTransformType::SCALE ); in importAnimateScaleContainer()
1861 xTransform->setFrom( makeAny( aPair ) ); in importAnimateScaleContainer()
1869 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
1881 xTransform->setBy( makeAny( aPair ) ); in importAnimateScaleContainer()
1890 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
1925 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateRotationContainer() local
1928 if( !(pAtom && xTransform.is()) ) in importAnimateRotationContainer()
1931 xTransform->setTransformType( AnimationTransformType::ROTATE ); in importAnimateRotationContainer()
[all …]
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/widgets/
H A Ddimap.h59 double xTransform(double x) const;

12