| 276 | //----------------------------------------------------------------------------- |
| 277 | |
| 278 | F32 GuiGraphCtrl::getDatum( S32 plotID, S32 sample) |
| 279 | { |
| 280 | AssertFatal(plotID > -1 && plotID < MaxPlots, "Invalid plot specified!"); |
| 281 | AssertFatal(sample > -1 && sample < MaxDataPoints, "Invalid sample specified!"); |
| 282 | return mGraphData[ plotID ][sample]; |
| 283 | } |
| 284 | |
| 285 | //----------------------------------------------------------------------------- |
| 286 |