| /AOO42X/main/tools/inc/tools/ |
| H A D | vector2d.hxx | 37 double mfX; member in Vector2D 41 inline Vector2D() : mfX( 0.0 ), mfY( 0.0 ) {} in Vector2D() 42 inline Vector2D( double fX, double fY ) : mfX( fX ), mfY( fY ) {} in Vector2D() 43 inline Vector2D( const Vector2D& rVec ) : mfX( rVec.mfX ), mfY( rVec.mfY ) {} in Vector2D() 44 inline Vector2D( const Pair& rPair ) : mfX( rPair.nA ), mfY( rPair.nB ) {}; in Vector2D() 47 inline const double& X() const { return mfX; } in X() 49 inline double& X() { return mfX; } in X() 51 inline const double& operator[] (int nPos) const { return (nPos ? mfY : mfX); } in operator []() 52 inline double& operator[] (int nPos) { return (nPos ? mfY : mfX); } in operator []() 54 inline double GetLength() const { return hypot( mfX, mfY ); } in GetLength() [all …]
|
| /AOO42X/main/basegfx/inc/basegfx/tuple/ |
| H A D | b3dtuple.hxx | 49 double mfX; member in basegfx::B3DTuple 59 : mfX(0.0), in B3DTuple() 79 : mfX(fX), in B3DTuple() 90 : mfX( rTup.mfX ), in B3DTuple() 108 return mfX; in getX() 126 mfX = fX; in setX() 147 return *((&mfX) + nPos); in operator []() 156 return *((&mfX) + nPos); in operator []() 165 (::basegfx::fTools::equalZero(mfX) in equalZero() 173 (::basegfx::fTools::equalZero(mfX, rfSmallValue) in equalZero() [all …]
|
| H A D | b2dtuple.hxx | 49 double mfX; member in basegfx::B2DTuple 58 : mfX(0.0), in B2DTuple() 73 : mfX( fX ), in B2DTuple() 83 : mfX( rTup.mfX ), in B2DTuple() 100 return mfX; in getX() 112 mfX = fX; in setX() 127 return *((&mfX) + nPos); in operator []() 136 return *((&mfX) + nPos); in operator []() 145 (fTools::equalZero(mfX) && fTools::equalZero(mfY))); in equalZero() 151 (fTools::equalZero(mfX, rfSmallValue) && fTools::equalZero(mfY, rfSmallValue))); in equalZero() [all …]
|
| /AOO42X/main/basegfx/source/vector/ |
| H A D | b2dvector.cxx | 36 mfX = 0.0; in normalize() 49 mfX /= fLen; in normalize() 60 mfX = rVec.getX(); in operator =() 67 if(fTools::equalZero(mfX)) in getLength() 73 return fabs(mfX); in getLength() 76 return hypot( mfX, mfY ); in getLength() 81 return((mfX * rVec.mfX) + (mfY * rVec.mfY)); in scalar() 86 return(mfX * rVec.getY() - mfY * rVec.getX()); in cross() 91 return atan2(mfX * rVec.getY() - mfY * rVec.getX(), in angle() 92 mfX * rVec.getX() + mfY * rVec.getY()); in angle() [all …]
|
| H A D | b3dvector.cxx | 43 mfX /= fLen; in normalize() 67 aNew.mfX = mfX - aNew.mfX; in getProjectionOnPlane() 76 const double fTempX( rMat.get(0,0)*mfX + rMat.get(0,1)*mfY + rMat.get(0,2)*mfZ ); in operator *=() 77 const double fTempY( rMat.get(1,0)*mfX + rMat.get(1,1)*mfY + rMat.get(1,2)*mfZ ); in operator *=() 78 const double fTempZ( rMat.get(2,0)*mfX + rMat.get(2,1)*mfY + rMat.get(2,2)*mfZ ); in operator *=() 79 mfX = fTempX; in operator *=()
|
| /AOO42X/main/basegfx/inc/basegfx/color/ |
| H A D | bcolor.hxx | 103 double getRed() const { return mfX; } in getRed() 108 void setRed(double fNew) { mfX = fNew; } in setRed() 116 mfX *= rPnt.mfX; in operator *=() 126 mfX *= t; in operator *=() 137 mfX = rVec.getX(); in operator =() 147 mfX = rColor.getRed() * fLuminance; in blend() 159 return (mfX * fRedWeight + mfY * fGreenWeight + mfZ * fBlueWeight); in luminance() 199 mfX = basegfx::clamp(mfX, 0.0, 1.0); in clamp() 207 mfX = 1.0 - mfX; in invert() 223 pRet[0] = mfX; in colorToDoubleSequence()
|
| /AOO42X/main/basegfx/inc/basegfx/vector/ |
| H A D | b3dvector.hxx | 97 mfX *= rPnt.mfX; in operator *=() 107 mfX *= t; in operator *=() 118 mfX = rVec.getX(); in operator =() 142 double fLen((mfX * mfX) + (mfY * mfY)); in getXYLength() 154 double fLen((mfX * mfX) + (mfZ * mfZ)); // #i73040# in getXZLength() 190 mfX *= fLen; in setLength() 257 return ((mfX * rVec.mfX) + (mfY * rVec.mfY) + (mfZ * rVec.mfZ)); in scalar()
|
| H A D | b2dvector.hxx | 102 mfX *= rPnt.mfX; in operator *=() 111 mfX *= t; in operator *=()
|
| /AOO42X/main/basegfx/source/tuple/ |
| H A D | b2dtuple.cxx | 41 : mfX( rTup.getX() ), in B2DTuple() 49 if(::basegfx::fTools::equalZero(mfX)) in correctValues() 51 mfX = 0.0; in correctValues() 61 if(::basegfx::fTools::equal(mfX, fCompareValue)) in correctValues() 63 mfX = fCompareValue; in correctValues()
|
| H A D | b3dtuple.cxx | 40 : mfX( rTup.getX() ), in B3DTuple()
|
| /AOO42X/main/basegfx/source/point/ |
| H A D | b2dpoint.cxx | 36 mfX = rPoint.getX(); in operator =() 44 rMat.get(0, 0) * mfX + in operator *=() 48 rMat.get(1, 0) * mfX + in operator *=() 56 rMat.get(2, 0) * mfX + in operator *=() 67 mfX = fTempX; in operator *=()
|
| H A D | b3dpoint.cxx | 35 rMat.get(0, 0) * mfX + in operator *=() 40 rMat.get(1, 0) * mfX + in operator *=() 45 rMat.get(2, 0) * mfX + in operator *=() 54 rMat.get(3, 0) * mfX + in operator *=() 67 mfX = fTempX; in operator *=()
|
| /AOO42X/main/basegfx/inc/basegfx/point/ |
| H A D | b3dpoint.hxx | 95 mfX *= rPnt.mfX; in operator *=() 105 mfX *= t; in operator *=() 116 mfX = rVec.getX(); in operator =()
|
| H A D | b2dpoint.hxx | 103 mfX *= rPnt.mfX; in operator *=() 112 mfX *= t; in operator *=()
|
| /AOO42X/main/oox/inc/oox/drawingml/chart/ |
| H A D | chartdrawingfragment.hxx | 39 double mfX; /// X coordinate relative to chart object (0.0 to 1.0). member 42 inline explicit AnchorPosModel() : mfX( -1.0 ), mfY( -1.0 ) {} in AnchorPosModel() 43 …inline bool isValid() const { return (0.0 <= mfX) && (mfX <= 1.0) && (0.0 <= mfY) && (mfY … in isValid()
|
| H A D | modelbase.hxx | 115 double mfX; /// Left position of this object. member
|
| /AOO42X/main/oox/source/drawingml/chart/ |
| H A D | converterbase.cxx | 367 orRect.X = lclCalcPosition( rChartSize.Width, mrModel.mfX, mrModel.mnXMode ); in calcAbsRectangle() 382 (mrModel.mnXMode == XML_edge) && (mrModel.mfX >= 0.0) && in convertFromModel() 386 getLimitedValue< double, double >( mrModel.mfX, 0.0, 1.0 ), in convertFromModel() 409 lclCalcPosition( rChartSize.Width, mrModel.mfX, mrModel.mnXMode ), in convertFromModel()
|
| H A D | chartdrawingfragment.cxx | 76 case CDR_TOKEN( x ): pAnchorPos->mfX = rValue.toDouble(); break; in setPos() 91 aAnchorRect.X = static_cast< sal_Int64 >( maFrom.mfX * rChartRect.Width + 0.5 ); in calcAnchorRectEmu() 97 … aAnchorRect.Width = static_cast< sal_Int64 >( maTo.mfX * rChartRect.Width + 0.5 ) - aAnchorRect.X; in calcAnchorRectEmu()
|
| H A D | modelbase.cxx | 53 mfX( 0.0 ), in LayoutModel()
|
| H A D | chartcontextbase.cxx | 82 mrModel.mfX = rAttribs.getDouble( XML_val, 0.0 ); in onCreateContext()
|
| /AOO42X/main/xmloff/inc/ |
| H A D | xexptran.hxx | 119 double mfX; member in SdXMLImExViewBox 128 double GetX() const { return mfX; } in GetX()
|
| /AOO42X/main/xmloff/source/draw/ |
| H A D | xexptran.cxx | 1285 : mfX( fX ), in SdXMLImExViewBox() 1295 mfX( 0.0 ), in SdXMLImExViewBox() 1310 mfX = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, mfX); in SdXMLImExViewBox() 1337 Imp_PutDoubleChar(aNewString, mfX); in GetExportString()
|