Home
last modified time | relevance | path

Searched refs:fRotationAngleDegree (Results 1 – 8 of 8) sorted by relevance

/AOO41X/main/chart2/source/view/axes/
H A DVCartesianAxis.cxx103 const double fRotationAnglePi(rAxisLabelProperties.fRotationAngleDegree * (F_PI / -180.0)); in createSingleLabel()
112 …, rAxisProperties.m_aLabelAlignment, rAxisLabelProperties.fRotationAngleDegree, rAxisProperties.m_… in createSingleLabel()
118 , double fRotationAngleDegree in lcl_doesShapeOverlapWithTickmark() argument
125 …ectangle(xShape->getPosition(),ShapeFactory::getSizeAfterRotation( xShape, fRotationAngleDegree )); in lcl_doesShapeOverlapWithTickmark()
146 , double fRotationAngleDegree ) in doesOverlap() argument
151 …angle(xShape1->getPosition(),ShapeFactory::getSizeAfterRotation( xShape1, fRotationAngleDegree ))); in doesOverlap()
152 …angle(xShape2->getPosition(),ShapeFactory::getSizeAfterRotation( xShape2, fRotationAngleDegree ))); in doesOverlap()
258 …abelsDistance( TickIter& rIter, const B2DVector& rDistanceTickToText, double fRotationAngleDegree ) in lcl_getLabelsDistance() argument
281 … awt::Size aSize = ShapeFactory::getSizeAfterRotation( xShape2DText, fRotationAngleDegree ); in lcl_getLabelsDistance()
428 if( !::rtl::math::approxEqual( rAxisLabelProperties.fRotationAngleDegree, 0.0 ) ) in isBreakOfLabelsAllowed()
[all …]
H A DVAxisBase.cxx114 …e::recordMaximumTextSize( const Reference< drawing::XShape >& xShape, double fRotationAngleDegree ) in recordMaximumTextSize() argument
119 xShape, fRotationAngleDegree ) ); in recordMaximumTextSize()
H A DVAxisProperties.cxx395 , fRotationAngleDegree( 0.0 ) in AxisLabelProperties()
422 xProp->getPropertyValue( C2U( "TextRotation" ) ) >>= this->fRotationAngleDegree; in init()
H A DVAxisBase.hxx80 , double fRotationAngleDegree );
H A DVAxisProperties.hxx81 double fRotationAngleDegree; member
H A DVPolarAngleAxis.cxx139 … const double fRotationAnglePi(rAxisLabelProperties.fRotationAngleDegree * (F_PI / -180.0)); in createTextShapes_ForAngleAxis()
/AOO41X/main/chart2/source/view/main/
H A DShapeFactory.cxx2369 const uno::Reference< drawing::XShape >& xShape, double fRotationAngleDegree ) in getSizeAfterRotation() argument
2376 if( ::rtl::math::approxEqual( fRotationAngleDegree, 0.0 ) ) in getSizeAfterRotation()
2380 while(fRotationAngleDegree>=360.0) in getSizeAfterRotation()
2381 fRotationAngleDegree-=360.0; in getSizeAfterRotation()
2382 while(fRotationAngleDegree<0.0) in getSizeAfterRotation()
2383 fRotationAngleDegree+=360.0; in getSizeAfterRotation()
2384 if(fRotationAngleDegree>270.0) in getSizeAfterRotation()
2385 fRotationAngleDegree=360.0-fRotationAngleDegree; in getSizeAfterRotation()
2386 else if(fRotationAngleDegree>180.0) in getSizeAfterRotation()
2387 fRotationAngleDegree=fRotationAngleDegree-180.0; in getSizeAfterRotation()
[all …]
/AOO41X/main/chart2/source/view/inc/
H A DShapeFactory.hxx222 …::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape, double fRotationAngleDegree );