Home
last modified time | relevance | path

Searched refs:fy (Results 1 – 22 of 22) sorted by relevance

/AOO41X/main/filter/source/graphicfilter/idxf/
H A Ddxfvec.cxx81 aMX.fy=sin(3.14159265359/180.0*fRotAngle); in DXFTransform()
82 aMY.fx=-aMX.fy; in DXFTransform()
83 aMY.fy=aMX.fx; in DXFTransform()
93 if ( fabs(rExtrusion.fx) < 1.0/64.0 && fabs(rExtrusion.fy) < 1.0/64.0) { in DXFTransform()
112 aMY.fz=aV.fy; in DXFTransform()
116 if (aV.fx==0) aMY.fx=0; else aMY.fx=sqrt(1/(1+aV.fy*aV.fy/(aV.fx*aV.fx))); in DXFTransform()
118 if (aV.fx*aV.fy*aMY.fx>0) aMX.fx=-aMX.fx; in DXFTransform()
121 aMX.fy=aV.fx; in DXFTransform()
122 aMY.fy=aV.fy; in DXFTransform()
123 aMZ.fy=aV.fz; in DXFTransform()
[all …]
H A Ddxfvec.hxx70 double fx,fy,fz; // public ! - Warum nicht ? member in DXFVector
179 fx=fX; fy=fY; fz=fZ; in DXFVector()
185 fx=rV.fx; fy=rV.fy; fz=rV.fz; in DXFVector()
191 fx+=rV.fx; fy+=rV.fy; fz+=rV.fz; in operator +=()
198 return DXFVector(fx+rV.fx, fy+rV.fy, fz+rV.fz); in operator +()
204 fx-=rV.fx; fy-=rV.fy; fz-=rV.fz; in operator -=()
211 return DXFVector(fx-rV.fx, fy-rV.fy, fz-rV.fz); in operator -()
218 fy * rV.fz - fz * rV.fy, in operator *()
220 fx * rV.fy - fy * rV.fx in operator *()
227 return fx*rV.fx + fy*rV.fy + fz*rV.fz; in SProd()
[all …]
H A Ddxfentrd.cxx43 aExtrusion.fy=0.0; in DXFBasicEntity()
63 case 220: aExtrusion.fy=rDGR.GetF(); break; in EvaluateGroup()
82 case 20: aP0.fy=rDGR.GetF(); break; in EvaluateGroup()
85 case 21: aP1.fy=rDGR.GetF(); break; in EvaluateGroup()
101 case 20: aP0.fy=rDGR.GetF(); break; in EvaluateGroup()
118 case 20: aP0.fy=rDGR.GetF(); break; in EvaluateGroup()
138 case 20: aP0.fy=rDGR.GetF(); break; in EvaluateGroup()
157 case 20: aP0.fy=rDGR.GetF(); break; in EvaluateGroup()
160 case 21: aP1.fy=rDGR.GetF(); break; in EvaluateGroup()
163 case 22: aP2.fy=rDGR.GetF(); break; in EvaluateGroup()
[all …]
H A Ddxfreprd.cxx38 fMinY=rVector.fy; in Union()
41 fMaxY=rVector.fy; in Union()
47 if (fMinY>rVector.fy) fMinY=rVector.fy; in Union()
50 if (fMaxY<rVector.fy) fMaxY=rVector.fy; in Union()
203 aVector.fy=rDGR.GetF(20); in ReadHeader()
256 aP.fy-=pE->fRadius; in CalcBoundingBox()
260 aP.fy+=pE->fRadius; in CalcBoundingBox()
269 aP.fy-=pE->fRadius; in CalcBoundingBox()
273 aP.fy+=pE->fRadius; in CalcBoundingBox()
313 aP.fy=(aBox.fMinY-pB->aBasePoint.fy)*pE->fYScale+pE->aP0.fy; in CalcBoundingBox()
[all …]
H A Ddxfblkrd.cxx52 aBasePoint.fy=0.0; in Read()
65 case 20: aBasePoint.fy=rDGR.GetF(); break; in Read()
H A Ddxf2mtf.cxx310 Rectangle((long)(aC.fx-frx+0.5),(long)(aC.fy-fry+0.5), in DrawCircleEntity()
311 (long)(aC.fx+frx+0.5),(long)(aC.fy+fry+0.5))); in DrawCircleEntity()
370 Rectangle((long)(aC.fx-frx+0.5),(long)(aC.fy-fry+0.5), in DrawArcEntity()
371 (long)(aC.fx+frx+0.5),(long)(aC.fy+fry+0.5)), in DrawArcEntity()
900 if (pVPort->aDirection.fx==0 && pVPort->aDirection.fy==0) in Convert()
H A Ddxftblrd.cxx190 case 26: aDirection.fy=rDGR.GetF(); break; in Read()
193 case 27: aTarget.fy=rDGR.GetF(); break; in Read()
/AOO41X/main/sc/source/core/tool/
H A Dinterpr5.cxx100 double ScInterpreter::ScGetGCD(double fx, double fy) in ScGetGCD() argument
105 if (fy == 0.0) in ScGetGCD()
108 return fy; in ScGetGCD()
111 double fz = fmod(fx, fy); in ScGetGCD()
114 fx = fy; in ScGetGCD()
115 fy = fz; in ScGetGCD()
116 fz = fmod(fx, fy); in ScGetGCD()
118 return fy; in ScGetGCD()
128 double fx, fy = 0.0; in ScGCD() local
145 fy = ScGetGCD(fx, fy); in ScGCD()
[all …]
/AOO41X/main/svtools/source/dialogs/
H A Dmcvmath.cxx250 Fix fy = y; in ImpATan2() local
251 fy.DivBig( rRad ); in ImpATan2()
253 return ImpATanx2( fx, fy ); in ImpATan2()
277 Fix fy = y; in ImpCartToPolar() local
278 fy.DivBig(rRad); in ImpCartToPolar()
279 rPhi = ImpATanx2(fx, fy); in ImpCartToPolar()
/AOO41X/main/basegfx/source/matrix/
H A Db3dhommatrix.cxx548 double fy=0; in decompose() local
554 fy = -F_PI/2.0; in decompose()
560 fy = F_PI/2.0; in decompose()
565 fy = asin( -aCol0.getZ() ); in decompose()
566 cy = cos(fy); in decompose()
569 rRotate.setY(fy); in decompose()
/AOO41X/main/sw/source/ui/docvw/
H A DSidebarWin.cxx723 const Fraction& fy( GetMapMode().GetScaleY() ); in DoResize() local
731 aPos.Y()+5*fy.GetNumerator()/fy.GetDenominator() ), in DoResize()
733 METABUTTON_HEIGHT*fy.GetNumerator()/fy.GetDenominator() ) ) ); in DoResize()
739 aPos.Y()+5*fy.GetNumerator()/fy.GetDenominator() ), in DoResize()
741 METABUTTON_HEIGHT*fy.GetNumerator()/fy.GetDenominator() ) ) ); in DoResize()
/AOO41X/main/svx/source/svdraw/
H A Dsvdsnpv.cxx447 double fy = (double)y; in SnapPos() local
450 if(fy - (double)pPV->GetPageOrigin().Y() >= 0.0) in SnapPos()
451 fy += fSnapWidth / 2.0; in SnapPos()
453 fy -= fSnapWidth / 2.0; in SnapPos()
455 y = (long)((fy - (double)pPV->GetPageOrigin().Y()) / fSnapWidth); in SnapPos()
/AOO41X/main/sw/source/ui/envelp/
H A Denvlop1.cxx103 fy = (float)GetOutputSizePixel().Height() / (float)nPageH, in Paint() local
104 f = 0.8f * ( fx < fy ? fx : fy ); in Paint()
H A Dlabfmt.cxx143 fy = (float) lOutHPix23 / Max(1L, lDispH), in Paint() local
144 f = fx < fy ? fx : fy; in Paint()
/AOO41X/main/chart2/source/view/main/
H A DChartView.cxx1176 double fx, fy, fz; in getPreferredAspectRatio() local
1177 fx = fy = fz = -1.0; in getPreferredAspectRatio()
1187 if( fy<0 && aSingleRatio.DirectionY>0 ) in getPreferredAspectRatio()
1190 fy = fx*aSingleRatio.DirectionY/aSingleRatio.DirectionX; in getPreferredAspectRatio()
1192 fy = fz*aSingleRatio.DirectionY/aSingleRatio.DirectionZ; in getPreferredAspectRatio()
1194 fy = aSingleRatio.DirectionY; in getPreferredAspectRatio()
1201 else if( fy>0 && aSingleRatio.DirectionY>0 ) in getPreferredAspectRatio()
1202 fz = fy*aSingleRatio.DirectionZ/aSingleRatio.DirectionY; in getPreferredAspectRatio()
1207 if( fx>0 && fy>0 && fz>0 ) in getPreferredAspectRatio()
1210 aPreferredAspectRatio = drawing::Direction3D(fx, fy, fz); in getPreferredAspectRatio()
/AOO41X/main/libtextcat/data/new_fingerprints/
H A Dfpdb.conf70 frisian.lm fy--utf8
/AOO41X/main/libtextcat/data/new_fingerprints/lm/
H A Dwelsh.lm198 fy 633
H A Dicelandic.lm160 fy 240
/AOO41X/main/offapi/com/sun/star/linguistic2/
H A DXLanguageGuessing.idl64 <li>fy : Frisian</li>
/AOO41X/main/sc/source/core/inc/
H A Dinterpre.hxx664 double ScGetGCD(double fx, double fy);
/AOO41X/extras/l10n/source/kid/
H A Dlocalize.sdf6643 …c\shared\03020404.xhp 0 help hd_id3153770 7 0 kid 3r8]fy‖Parameters: …
8615 …basic\shared\03101120.xhp 0 help par_idN1057D 0 kid fy+2tl‖\<link href=\"te…
24041 …t\shared\00\00000401.xhp 0 help par_id3154812 50 0 kid 2fy+rw‖Choose \<emph\>Fi…
25455 …hared\01\02210101.xhp 0 help par_id3150943 21 0 kid 10t[fy‖Displays or hides th…
26592 …shared\01\06040100.xhp 0 help par_id3146975 45 0 kid 2m=fy+‖~~~ 20…
31465 …\shared\02\20050000.xhp 0 help par_id3153394 4 0 kid d=fy]a‖\<emph\>Display\</…
32083 …hared\02\01170101.xhp 0 help par_id3154703 90 0 kid gb-=fy‖\<ahelp hid=\"HID_PR…
32299 …d\02\01170101.xhp 0 help par_id0409200921154691 0 kid fy-ubk‖If the property …
33786 …red\autopi\01120500.xhp 0 help par_id3163829 4 0 kid 75fy]8‖\<ahelp hid=\"DBP_…
37291 …xt\shared\guide\tabs.xhp 0 help par_id3146972 15 0 kid fy]jx8‖The \<link href=…
[all …]
/AOO41X/extras/l10n/source/cy/
H A Dlocalize.sdf1807 setup_native source\mac\macinstall.ulf 0 LngText IdentifyYES 0 cy Iawn, fy ad…
53465 …c 0 pushbutton RID_SCDLG_CONFLICTS BTN_KEEPALLMINE 104 cy Cadw fy Rhai i i ~Gyd …