MCPcopy Create free account
hub / github.com/arrayfire/forge / getAxesLimits

Method getAxesLimits

src/backend/opengl/chart_impl.cpp:211–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

209}
210
211void 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
220void AbstractChart::setAxesTitles(const char* pXTitle,
221 const char* pYTitle,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected