| 173 | } |
| 174 | |
| 175 | fg_err fg_append_plot_to_chart(fg_chart pChart, fg_plot pPlot) |
| 176 | { |
| 177 | try { |
| 178 | ARG_ASSERT(0, (pChart!=0)); |
| 179 | ARG_ASSERT(1, (pPlot!=0)); |
| 180 | |
| 181 | getChart(pChart)->addRenderable(getPlot(pPlot)->impl()); |
| 182 | } |
| 183 | CATCHALL |
| 184 | |
| 185 | return FG_ERR_NONE; |
| 186 | } |
| 187 | |
| 188 | fg_err fg_append_surface_to_chart(fg_chart pChart, fg_surface pSurface) |
| 189 | { |
no test coverage detected