Home
last modified time | relevance | path

Searched refs:fChunkOut (Results 1 – 2 of 2) sorted by relevance

/trunk/main/extensions/source/scanner/
H A Dgrid.cxx221 void GridWindow::computeChunk( double fMin, double fMax, double& fChunkOut, double& fMinChunkOut ) in computeChunk() argument
224 fChunkOut = ( fMax - fMin ) / 6.0; in computeChunk()
225 int logchunk = (int)std::log10( fChunkOut ); in computeChunk()
226 int nChunk = (int)( fChunkOut / std::exp( (double)(logchunk-1) * M_LN10 ) ); in computeChunk()
239 fChunkOut = (double) nChunk * exp( (double)(logchunk-1) * M_LN10 ); in computeChunk()
241 nChunk = (int)( fMin / fChunkOut ); in computeChunk()
242 fMinChunkOut = (double)nChunk * fChunkOut; in computeChunk()
244 fMinChunkOut += fChunkOut; in computeChunk()
H A Dgrid.hxx115 void computeChunk( double fMin, double fMax, double& fChunkOut, double& fMinChunkOut );

Completed in 16 milliseconds