Lines Matching refs:nHorSeg

264 			sal_uInt32 nHorSeg, sal_uInt32 nVerSeg,  in createUnitSpherePolyPolygon()  argument
271 if(!nHorSeg) in createUnitSpherePolyPolygon()
273 nHorSeg = fround(fabs(fHorStop - fHorStart) / (F_2PI / 24.0)); in createUnitSpherePolyPolygon()
277 nHorSeg = ::std::min(nMaxSegments, ::std::max(nMinSegments, nHorSeg)); in createUnitSpherePolyPolygon()
289 const double fHorDiffPerStep((fHorStop - fHorStart) / (double)nHorSeg); in createUnitSpherePolyPolygon()
297 const sal_uInt32 nLoopHorLimit(bHorClosed ? nHorSeg : nHorSeg + 1L); in createUnitSpherePolyPolygon()
343 sal_uInt32 nHorSeg, sal_uInt32 nVerSeg, in createSpherePolyPolygonFromB3DRange() argument
347 …B3DPolyPolygon aRetval(createUnitSpherePolyPolygon(nHorSeg, nVerSeg, fVerStart, fVerStop, fHorStar… in createSpherePolyPolygonFromB3DRange()
363 sal_uInt32 nHorSeg, sal_uInt32 nVerSeg, in createUnitSphereFillPolyPolygon() argument
370 if(!nHorSeg) in createUnitSphereFillPolyPolygon()
372 nHorSeg = fround(fabs(fHorStop - fHorStart) / (F_2PI / 24.0)); in createUnitSphereFillPolyPolygon()
376 nHorSeg = ::std::min(nMaxSegments, ::std::max(nMinSegments, nHorSeg)); in createUnitSphereFillPolyPolygon()
393 for(sal_uInt32 b(0L); b < nHorSeg; b++) in createUnitSphereFillPolyPolygon()
395 const double fHor(fHorStart + (((fHorStop - fHorStart) * b) / nHorSeg)); in createUnitSphereFillPolyPolygon()
396 const double fHor2(fHorStart + (((fHorStop - fHorStart) * (b + 1)) / nHorSeg)); in createUnitSphereFillPolyPolygon()
421 sal_uInt32 nHorSeg, sal_uInt32 nVerSeg, in createSphereFillPolyPolygonFromB3DRange() argument
426 …B3DPolyPolygon aRetval(createUnitSphereFillPolyPolygon(nHorSeg, nVerSeg, bNormals, fVerStart, fVer… in createSphereFillPolyPolygonFromB3DRange()