| 209 | } |
| 210 | |
| 211 | void AbstractChart::getAxesLimits(float* pXmin, float* pXmax, |
| 212 | float* pYmin, float* pYmax, |
| 213 | float* pZmin, float* pZmax) |
| 214 | { |
| 215 | *pXmin = mXMin; *pXmax = mXMax; |
| 216 | *pYmin = mYMin; *pYmax = mYMax; |
| 217 | *pZmin = mZMin; *pZmax = mZMax; |
| 218 | } |
| 219 | |
| 220 | void AbstractChart::setAxesTitles(const char* pXTitle, |
| 221 | const char* pYTitle, |
nothing calls this directly
no outgoing calls
no test coverage detected