Home
last modified time | relevance | path

Searched refs:aRotation (Results 1 – 25 of 237) sorted by relevance

12345678910

/dports/cad/opencascade/opencascade-7.6.0/src/GeomEvaluator/
H A DGeomEvaluator_SurfaceOfRevolution.cxx52 gp_Trsf aRotation; in D0() local
74 gp_Trsf aRotation; in D1() local
77 theD1U.Transform(aRotation); in D1()
78 theD1V.Transform(aRotation); in D1()
102 gp_Trsf aRotation; in D2() local
105 theD1U.Transform(aRotation); in D2()
106 theD1V.Transform(aRotation); in D2()
107 theD2U.Transform(aRotation); in D2()
108 theD2V.Transform(aRotation); in D2()
137 gp_Trsf aRotation; in D3() local
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/Draw/
H A DDraw_View.cxx110 gp_Trsf aRotation; in Init() local
115 myMatrix = aRotation; in Init()
139 myMatrix.Multiply(aRotation); in Init()
153 myMatrix.Multiply(aRotation); in Init()
172 myMatrix.Multiply(aRotation); in Init()
181 myMatrix.Multiply(aRotation); in Init()
190 myMatrix.Multiply(aRotation); in Init()
199 myMatrix.Multiply(aRotation); in Init()
208 myMatrix.Multiply(aRotation); in Init()
217 myMatrix.Multiply(aRotation); in Init()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/filter/
H A DGraphicNativeTransform.cxx41 sal_uInt16 aRotation = aInputRotation % 3600; in rotate() local
43 if (aRotation == 0) in rotate()
47 else if (aRotation != 900 && aRotation != 1800 && aRotation != 2700) in rotate()
55 rotateJPEG(aRotation); in rotate()
59 rotateGeneric(aRotation, "png"); in rotate()
63 rotateGeneric(aRotation, "gif"); in rotate()
67 rotateBitmapOnly(aRotation); in rotate()
79 aBitmap.Rotate(aRotation, COL_BLACK); in rotateBitmapOnly()
108 aBitmap.Rotate(aRotation, COL_BLACK); in rotateGeneric()
127 rotateGeneric(aRotation, "png"); in rotateJPEG()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/filter/
H A DGraphicNativeTransform.cxx41 Degree10 aRotation = aInputRotation % 3600_deg10; in rotate() local
43 if (aRotation == 0_deg10) in rotate()
47 else if (aRotation != 900_deg10 && aRotation != 1800_deg10 && aRotation != 2700_deg10) in rotate()
55 rotateJPEG(aRotation); in rotate()
59 rotateGeneric(aRotation, u"png"); in rotate()
63 rotateGeneric(aRotation, u"gif"); in rotate()
67 rotateBitmapOnly(aRotation); in rotate()
79 aBitmap.Rotate(aRotation, COL_BLACK); in rotateBitmapOnly()
108 aBitmap.Rotate(aRotation, COL_BLACK); in rotateGeneric()
126 rotateGeneric(aRotation, u"png"); in rotateJPEG()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/view/
H A Dzoom_controller.cpp73 double ACCELERATING_ZOOM_CONTROLLER::GetScaleForRotation( int aRotation ) in GetScaleForRotation() argument
84 wxString::Format( "Rot %d, time diff: %ldms", aRotation, (long)timeDiff.count() ) ); in GetScaleForRotation()
96 if( aRotation < 0 ) in GetScaleForRotation()
101 zoomScale = ( aRotation > 0 ) ? minStep : 1 / minStep; in GetScaleForRotation()
115 double CONSTANT_ZOOM_CONTROLLER::GetScaleForRotation( int aRotation ) in GetScaleForRotation() argument
117 wxLogTrace( traceZoomScroll, wxString::Format( "Rot %d", aRotation ) ); in GetScaleForRotation()
119 aRotation = ( aRotation > 0 ) ? std::min( aRotation, 100 ) : std::max( aRotation, -100 ); in GetScaleForRotation()
121 double dscale = aRotation * m_scale; in GetScaleForRotation()
123 double zoom_scale = ( aRotation > 0 ) ? ( 1 + dscale ) : 1 / ( 1 - dscale ); in GetScaleForRotation()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/utils/kicad2step/pcb/
H A Dbase.cpp140 aRotation = (angle / 180.0) * M_PI; in Get2DPositionAndRotation()
257 if( aRotation.x > 360.0 || aRotation.x < -360.0 ) in GetXYZRotation()
259 int nr = (int) aRotation.x / 360; in GetXYZRotation()
260 aRotation.x -= ( 360.0 * nr ); in GetXYZRotation()
263 if( aRotation.y > 360.0 || aRotation.y < -360.0 ) in GetXYZRotation()
266 aRotation.y -= ( 360.0 * nr ); in GetXYZRotation()
269 if( aRotation.z > 360.0 || aRotation.z < -360.0 ) in GetXYZRotation()
272 aRotation.z -= ( 360.0 * nr ); in GetXYZRotation()
275 aRotation.x *= M_PI / 180.0; in GetXYZRotation()
276 aRotation.y *= M_PI / 180.0; in GetXYZRotation()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/chart2/source/controller/chartapiwrapper/
H A DWrappedSceneProperty.cxx56 ::basegfx::B3DTuple aRotation( BaseGFXHelper::GetRotationFromMatrix( in setPropertyValue()
60 aMatrix.rotate( aRotation.getX(), aRotation.getY(), aRotation.getZ() ); in setPropertyValue()
82 ::basegfx::B3DTuple aRotation( BaseGFXHelper::GetRotationFromMatrix( in getPropertyValue()
86 aMatrix.rotate( aRotation.getX(), aRotation.getY(), aRotation.getZ() ); in getPropertyValue()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/chart2/source/controller/chartapiwrapper/
H A DWrappedSceneProperty.cxx58 ::basegfx::B3DTuple aRotation( BaseGFXHelper::GetRotationFromMatrix( in setPropertyValue()
62 aMatrix.rotate( aRotation.getX(), aRotation.getY(), aRotation.getZ() ); in setPropertyValue()
84 ::basegfx::B3DTuple aRotation( BaseGFXHelper::GetRotationFromMatrix( in getPropertyValue()
88 aMatrix.rotate( aRotation.getX(), aRotation.getY(), aRotation.getZ() ); in getPropertyValue()
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/vcl/
H A DGraphicNativeTransform.hxx33 bool rotateBitmapOnly(Degree10 aRotation);
34 void rotateJPEG(Degree10 aRotation);
35 bool rotateGeneric(Degree10 aRotation, std::u16string_view aType);
41 void rotate(Degree10 aRotation);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/vcl/
H A DGraphicNativeTransform.hxx32 bool rotateBitmapOnly (sal_uInt16 aRotation);
33 void rotateJPEG (sal_uInt16 aRotation);
34 bool rotateGeneric (sal_uInt16 aRotation, const OUString& aType);
40 void rotate(sal_uInt16 aRotation);
/dports/www/firefox/firefox-99.0/widget/
H A DWidgetUtils.cpp21 ScreenRotation aRotation) { in ComputeTransformForRotation() argument
25 switch (aRotation) { in ComputeTransformForRotation()
47 ScreenRotation aRotation) { in ComputeTransformForUnRotation() argument
51 switch (aRotation) { in ComputeTransformForUnRotation()
73 ScreenRotation aRotation) { in RotateRect() argument
74 switch (aRotation) { in RotateRect()
H A DWidgetUtils.h31 ScreenRotation aRotation);
34 ScreenRotation aRotation);
37 ScreenRotation aRotation);
/dports/www/firefox-legacy/firefox-52.8.0esr/widget/
H A DWidgetUtils.cpp25 ScreenRotation aRotation) in G_DEFINE_BOXED_TYPE()
30 switch (aRotation) { in G_DEFINE_BOXED_TYPE()
53 ScreenRotation aRotation) in ide_xml_rng_grammar_new()
58 switch (aRotation) { in ide_xml_rng_grammar_new()
81 ScreenRotation aRotation)
83 switch (aRotation) {
H A DWidgetUtils.h32 ScreenRotation aRotation); in SecItemUpdate()
35 ScreenRotation aRotation); in SecItemUpdate()
39 ScreenRotation aRotation); in SecItemUpdate()
/dports/cad/opencascade/opencascade-7.6.0/src/Vrml/
H A DVrml_Rotation.cxx24 Vrml_Rotation::Vrml_Rotation(const Vrml_SFRotation& aRotation) in Vrml_Rotation() argument
26 myRotation = aRotation; in Vrml_Rotation()
29 void Vrml_Rotation::SetRotation(const Vrml_SFRotation& aRotation) in SetRotation() argument
31 myRotation = aRotation; in SetRotation()
H A DVrml_Texture2Transform.cxx31 const Standard_Real aRotation, in Vrml_Texture2Transform() argument
36 myRotation = aRotation; in Vrml_Texture2Transform()
51 void Vrml_Texture2Transform::SetRotation(const Standard_Real aRotation) in SetRotation() argument
53 myRotation = aRotation; in SetRotation()
/dports/lang/spidermonkey78/firefox-78.9.0/widget/
H A DWidgetUtils.cpp26 ScreenRotation aRotation) { in ComputeTransformForRotation() argument
30 switch (aRotation) { in ComputeTransformForRotation()
52 ScreenRotation aRotation) { in ComputeTransformForUnRotation() argument
56 switch (aRotation) { in ComputeTransformForUnRotation()
78 ScreenRotation aRotation) { in RotateRect() argument
79 switch (aRotation) { in RotateRect()
H A DWidgetUtils.h32 ScreenRotation aRotation);
35 ScreenRotation aRotation);
38 ScreenRotation aRotation);
/dports/lang/spidermonkey60/firefox-60.9.0/widget/
H A DWidgetUtils.cpp26 ScreenRotation aRotation) { in ComputeTransformForRotation() argument
30 switch (aRotation) { in ComputeTransformForRotation()
52 ScreenRotation aRotation) { in ComputeTransformForUnRotation() argument
56 switch (aRotation) { in ComputeTransformForUnRotation()
78 ScreenRotation aRotation) { in RotateRect() argument
79 switch (aRotation) { in RotateRect()
H A DWidgetUtils.h32 ScreenRotation aRotation);
35 ScreenRotation aRotation);
38 ScreenRotation aRotation);
/dports/mail/thunderbird/thunderbird-91.8.0/widget/
H A DWidgetUtils.cpp27 ScreenRotation aRotation) { in ComputeTransformForRotation() argument
31 switch (aRotation) { in ComputeTransformForRotation()
53 ScreenRotation aRotation) { in ComputeTransformForUnRotation() argument
57 switch (aRotation) { in ComputeTransformForUnRotation()
79 ScreenRotation aRotation) { in RotateRect() argument
80 switch (aRotation) { in RotateRect()
H A DWidgetUtils.h31 ScreenRotation aRotation);
34 ScreenRotation aRotation);
37 ScreenRotation aRotation);
/dports/www/firefox-esr/firefox-91.8.0/widget/
H A DWidgetUtils.cpp27 ScreenRotation aRotation) { in ComputeTransformForRotation() argument
31 switch (aRotation) { in ComputeTransformForRotation()
53 ScreenRotation aRotation) { in ComputeTransformForUnRotation() argument
57 switch (aRotation) { in ComputeTransformForUnRotation()
79 ScreenRotation aRotation) { in RotateRect() argument
80 switch (aRotation) { in RotateRect()
H A DWidgetUtils.h31 ScreenRotation aRotation);
34 ScreenRotation aRotation);
37 ScreenRotation aRotation);
/dports/cad/opencascade/opencascade-7.6.0/src/IGESGeom/
H A DIGESGeom_ToolFlash.cxx48 Standard_Real aDim1, aDim2, aRotation; in ReadOwnParams() local
53 aDim1 = aDim2 = aRotation = 0.; // default values in ReadOwnParams()
72 …PR.ReadReal(PR.Current(), "Rotation about ref. point", aRotation); //szv#4:S4163:12Mar99 `st=` not… in ReadOwnParams()
83 ent->Init (aPoint, aDim1, aDim2, aRotation, aReference); in ReadOwnParams()
110 Standard_Real aRotation = another->Rotation(); in OwnCopy() local
115 ent->Init(aPoint, aDim1, aDim2, aRotation, aReference); in OwnCopy()

12345678910