| 134 | } |
| 135 | |
| 136 | fg_err fg_get_plot_radii_buffer(unsigned* pOut, const fg_plot pPlot) |
| 137 | { |
| 138 | try { |
| 139 | ARG_ASSERT(1, (pPlot!=0)); |
| 140 | |
| 141 | *pOut = getPlot(pPlot)->mbo(); |
| 142 | } |
| 143 | CATCHALL |
| 144 | |
| 145 | return FG_ERR_NONE; |
| 146 | } |
| 147 | |
| 148 | fg_err fg_get_plot_vertex_buffer_size(unsigned* pOut, const fg_plot pPlot) |
| 149 | { |