Lines Matching refs:m_pfCurrentValues
85 , m_pfCurrentValues(NULL) in EquidistantTickFactory()
89 m_pfCurrentValues = new double[getTickDepth()]; in EquidistantTickFactory()
142 delete[] m_pfCurrentValues; in ~EquidistantTickFactory()
231 m_pfCurrentValues[0] = m_fOuterMajorTickBorderMin + nTick*m_rIncrement.Distance; in getMajorTick()
233 if(m_pfCurrentValues[0]>m_fOuterMajorTickBorderMax) in getMajorTick()
235 if( !approxEqual(m_pfCurrentValues[0],m_fOuterMajorTickBorderMax) ) in getMajorTick()
238 if(m_pfCurrentValues[0]<m_fOuterMajorTickBorderMin) in getMajorTick()
240 if( !approxEqual(m_pfCurrentValues[0],m_fOuterMajorTickBorderMin) ) in getMajorTick()
246 m_pfCurrentValues[0] = m_rScale.Scaling->doScaling( m_pfCurrentValues[0] ); in getMajorTick()
248 return &m_pfCurrentValues[0]; in getMajorTick()
282 m_pfCurrentValues[nDepth] = fAdaptedStartParent + nTick*fDistance; in getMinorTick()
286 m_pfCurrentValues[nDepth] = m_rScale.Scaling->doScaling( m_pfCurrentValues[nDepth] ); in getMinorTick()
288 if( !isWithinOuterBorder( m_pfCurrentValues[nDepth] ) ) in getMinorTick()
291 return &m_pfCurrentValues[nDepth]; in getMinorTick()