Home
last modified time | relevance | path

Searched refs:fDepth (Results 1 – 25 of 27) sorted by last modified time

12

/trunk/main/filter/source/msfilter/
H A Dmsdffimp.cxx1713 double fDepth = fBackDepth + fForeDepth; in ApplyCustomShapeGeometryAttributes() local
1714 double fFraction = fDepth != 0.0 ? fForeDepth / fDepth : 0; in ApplyCustomShapeGeometryAttributes()
1716 aDepthParaPair.First.Value <<= fDepth; in ApplyCustomShapeGeometryAttributes()
H A Descherex.cxx2830 double fDepth = 0; in CreateCustomShapeProperties() local
2833 …if ( ( rrProp.Value >>= aDepthParaPair ) && ( aDepthParaPair.First.Value >>= fDepth ) && ( aDepthP… in CreateCustomShapeProperties()
2835 double fForeDepth = fDepth * fFraction; in CreateCustomShapeProperties()
2836 double fBackDepth = fDepth - fForeDepth; in CreateCustomShapeProperties()
/trunk/main/svx/source/toolbars/
H A Dextrusionbar.cxx308 double fDepth = ((const SvxDoubleItem*)rReq.GetArgs()->GetItem(SID_EXTRUSION_DEPTH))->GetValue(); in impl_execute() local
311 aDepthPropPair.First.Value <<= fDepth; in impl_execute()
605 … double fDepth = ((const SvxDoubleItem*)rReq.GetArgs()->GetItem(SID_EXTRUSION_DEPTH))->GetValue(); in execute() local
608 ExtrusionDepthDialog aDlg( 0L, fDepth, eUnit ); in execute()
612 fDepth = aDlg.getDepth(); in execute()
614 SvxDoubleItem aItem( fDepth, SID_EXTRUSION_DEPTH ); in execute()
973 double fDepth = 1270.0; in getExtrusionDepthState() local
979 aDepthPropPair.First.Value >>= fDepth; in getExtrusionDepthState()
984 fFinalDepth = fDepth; in getExtrusionDepthState()
986 else if( fFinalDepth != fDepth ) in getExtrusionDepthState()
/trunk/main/svx/source/customshapes/
H A DEnhancedCustomShape3d.cxx114 double fDepth = 0, fFraction = 0; in GetExtrusionDepth() local
119 rForwardDepth = fDepth * fFraction; in GetExtrusionDepth()
120 rBackwardDepth = fDepth - rForwardDepth; in GetExtrusionDepth()
245 double fDepth(-( aPoint.getZ() * fSkew ) / 100.0); in ApplySkewSettings() local
247 aPoint.getX() + (fDepth * cos( fSkewAngle )), in ApplySkewSettings()
248 aPoint.getY() - (fDepth * sin( fSkewAngle )), in ApplySkewSettings()
340 double fDepth = fExtrusionBackward + fExtrusionForward; in Create3DObject() local
341 if ( fDepth < 1.0 ) in Create3DObject()
342 fDepth = 1.0; in Create3DObject()
562 p3DObj = new E3dExtrudeObj( a3DDefaultAttr, aPolyPoly, fDepth ); in Create3DObject()
[all …]
/trunk/main/svx/source/sdr/contact/
H A Dviewcontactofe3dextrude.cxx69 const double fDepth((double)GetE3dExtrudeObj().GetExtrudeDepth()); in createViewIndependentPrimitive3DSequence() local
83 aPolyPolygon, fDepth, fDiagonal, fBackScale, bSmoothNormals, true, bSmoothLids, in createViewIndependentPrimitive3DSequence()
/trunk/main/xmloff/source/draw/
H A Dximpcustomshape.cxx939 double fDepth; in StartElement() local
940 if ( rDepth.Value >>= fDepth ) in StartElement()
942 fDepth /= fFactor; in StartElement()
943 rDepth.Value <<= fDepth; in StartElement()
H A Dshapeexport4.cxx563 double fDepth = 0; in ImpExportEnhancedGeometry() local
564 if ( aDepthParaPair.First.Value >>= fDepth ) in ImpExportEnhancedGeometry()
566 rExport.GetMM100UnitConverter().convertDouble( aStrBuffer, fDepth, sal_True ); in ImpExportEnhancedGeometry()
/trunk/main/svx/source/tbxctrls/
H A Dextrusioncontrols.cxx304 ExtrusionDepthDialog::ExtrusionDepthDialog( Window* pParent, double fDepth, FieldUnit eDefaultUnit ) in ExtrusionDepthDialog() argument
314 maMtrDepth.SetValue( (int) fDepth * 100, FUNIT_100TH_MM ); in ExtrusionDepthDialog()
378 void ExtrusionDepthWindow::implSetDepth( double fDepth ) in implSetDepth() argument
380 mfDepth = fDepth; in implSetDepth()
386 checkEntry( i, fDepth >= 338666 ); in implSetDepth()
390 checkEntry( i, (fDepth == (IsMetric( meUnit ) ? aDepthListMM[i] : aDepthListInch[i]) ) ); in implSetDepth()
486 double fDepth; in IMPL_LINK() local
490 fDepth = 338666.6; in IMPL_LINK()
494 fDepth = IsMetric( meUnit ) ? aDepthListMM[nSelected] : aDepthListInch[nSelected]; in IMPL_LINK()
499 aArgs[0].Value <<= fDepth; in IMPL_LINK()
[all …]
H A Dextrusioncontrols.hxx125 void implSetDepth( double fDepth );
/trunk/main/svx/source/engine3d/
H A Dview3d.cxx789 p3DObj = new E3dExtrudeObj(aDefault, pPath->GetPathPoly(), fDepth); in ImpCreateSingle3DObjectFlat()
813 void E3dView::ImpCreate3DObject(E3dScene* pScene, SdrObject* pObj, sal_Bool bExtrude, double fDepth in ImpCreate3DObject() argument
860 ImpCreateSingle3DObjectFlat(pScene, pGroupMember, bExtrude, fDepth, rLatheMat); in ImpCreate3DObject()
864 ImpCreateSingle3DObjectFlat(pScene, pNewObj2, bExtrude, fDepth, rLatheMat); in ImpCreate3DObject()
905 double fDepth = 0.0; in ConvertMarkedObjTo3D() local
913 fDepth = sqrt(fW*fW + fH*fH) / 6.0; in ConvertMarkedObjTo3D()
996 ImpCreate3DObject(pScene, pObj, bExtrude, fDepth, aLatheMat); in ConvertMarkedObjTo3D()
1003 DoDepthArrange(pScene, fDepth); in ConvertMarkedObjTo3D()
1101 void E3dView::DoDepthArrange(E3dScene* pScene, double fDepth) in DoDepthArrange() argument
1206 double fMinDepth = fDepth * 0.8; in DoDepthArrange()
[all …]
H A Dextrud3d.cxx72 …j::E3dExtrudeObj(E3dDefaultAttributes& rDefault, const basegfx::B2DPolyPolygon& rPP, double fDepth) in E3dExtrudeObj() argument
85 GetProperties().SetObjectItemDirect(Svx3DDepthItem((sal_uInt32)(fDepth + 0.5))); in E3dExtrudeObj()
H A Dhelperhittest3d.cxx50 ImplPairDephAndObject(const E3dCompoundObject* pObject, double fDepth) in ImplPairDephAndObject() argument
52 mfDepth(fDepth) in ImplPairDephAndObject()
/trunk/main/svx/inc/svx/
H A Dview3d.hxx77 …void ImpCreate3DObject(E3dScene* pScene, SdrObject* pObj, sal_Bool bExtrude, double fDepth, basegf…
78 …DObjectFlat(E3dScene* pScene, SdrObject* pObj, sal_Bool bExtrude, double fDepth, basegfx::B2DHomMa…
123 void DoDepthArrange(E3dScene* pScene, double fDepth);
H A Dextrud3d.hxx53 E3dExtrudeObj(E3dDefaultAttributes& rDefault, const basegfx::B2DPolyPolygon& rPP, double fDepth);
/trunk/main/svx/inc/
H A Dextrusiondepthdialog.hxx47 ExtrusionDepthDialog( Window* pParent, double fDepth, FieldUnit eDefaultUnit );
/trunk/main/drawinglayer/source/primitive3d/
H A Dsdrextrudelathetools3d.cxx457 double fDepth, in createExtrudeSlices() argument
462 if(basegfx::fTools::equalZero(fDepth)) in createExtrudeSlices()
473 double fZFront(fDepth); // default depth for aFront in createExtrudeSlices()
491 const double fOffset(fDepth * fDiagonal * 0.5); in createExtrudeSlices()
492 fZFront = fDepth - fOffset; in createExtrudeSlices()
496 aTransformFront.translate(0.0, 0.0, fDepth); in createExtrudeSlices()
502 const double fOffset(fDepth * fDiagonal * 0.5); in createExtrudeSlices()
H A Dsdrextrudeprimitive3d.cxx401 double fDepth, in SdrExtrudePrimitive3D() argument
414 mfDepth(fDepth), in SdrExtrudePrimitive3D()
/trunk/main/drawinglayer/inc/drawinglayer/primitive3d/
H A Dsdrextrudelathetools3d.hxx104 double fDepth,
H A Dsdrextrudeprimitive3d.hxx90 double fDepth,
/trunk/main/chart2/source/view/inc/
H A DShapeFactory.hxx115 , double fDepth );
129 , double fDepth);
H A DStripe.hxx50 , double fDepth );
/trunk/main/chart2/source/view/main/
H A DShapeFactory.cxx498 double fDepth = rSize.DirectionZ; in impl_createCube() local
499 if(fDepth<0) in impl_createCube()
500 fDepth*=-1.0; in impl_createCube()
502 , uno::makeAny((sal_Int32)fDepth) ); in impl_createCube()
561 const double fDepth = rSize.DirectionZ; in createPyramid() local
576 aBottomP3.PositionZ += fDepth; in createPyramid()
577 aBottomP4.PositionZ += fDepth; in createPyramid()
598 aTopP3.PositionZ += fDepth*fTopFactor; in createPyramid()
599 aTopP4.PositionZ += fDepth*fTopFactor; in createPyramid()
1049 , double fDepth ) in createPieSegment() argument
[all …]
H A DStripe.cxx54 , double fDepth ) in Stripe() argument
62 m_aPoint3.PositionZ += fDepth; in Stripe()
63 m_aPoint4.PositionZ += fDepth; in Stripe()
/trunk/main/chart2/source/view/charttypes/
H A DAreaChart.cxx372 double fDepth = this->getTransformedDepth(); in impl_createLine() local
388 Stripe aStripe( aPoint1, aPoint2, fDepth ); in impl_createLine()
391 , Stripe( aPoint1, aPoint2, fDepth ) in impl_createLine()
H A DBarChart.cxx156 double fDepth = fScaledUpperBarDepth; in getLabelScreenPositionAndAlignment() local
167 fDepth = bReverse ? fabs(fScaledLowerBarDepth) : fabs(fScaledUpperBarDepth); in getLabelScreenPositionAndAlignment()
184 fDepth = bReverse ? fabs(fScaledUpperBarDepth) : fabs(fScaledLowerBarDepth); in getLabelScreenPositionAndAlignment()
201 fDepth = bReverse ? fabs(fScaledUpperBarDepth) : fabs(fScaledLowerBarDepth); in getLabelScreenPositionAndAlignment()
218 fDepth = bReverse ? fabs(fScaledLowerBarDepth) : fabs(fScaledUpperBarDepth); in getLabelScreenPositionAndAlignment()
236fDepth = (fBaseValue < fScaledUpperYValue) ? fabs(fScaledUpperBarDepth) : fabs(fScaledLowerBarDept… in getLabelScreenPositionAndAlignment()
247fDepth = (fBaseValue < fScaledUpperYValue) ? fabs(fScaledUpperBarDepth) : fabs(fScaledLowerBarDept… in getLabelScreenPositionAndAlignment()
258fDepth = (fBaseValue < fScaledUpperYValue) ? fabs(fScaledLowerBarDepth) : fabs(fScaledUpperBarDept… in getLabelScreenPositionAndAlignment()
265 fDepth = fabs(fScaledUpperBarDepth-fScaledLowerBarDepth)/2.0; in getLabelScreenPositionAndAlignment()
273 fZ -= fDepth/2.0; in getLabelScreenPositionAndAlignment()

Completed in 213 milliseconds

12