| 71 | } |
| 72 | |
| 73 | fg_err fg_set_vector_field_legend(fg_vector_field pField, const char* pLegend) |
| 74 | { |
| 75 | try { |
| 76 | ARG_ASSERT(0, (pField!=0)); |
| 77 | ARG_ASSERT(1, (pLegend!=0)); |
| 78 | |
| 79 | getVectorField(pField)->setLegend(pLegend); |
| 80 | } |
| 81 | CATCHALL |
| 82 | |
| 83 | return FG_ERR_NONE; |
| 84 | } |
| 85 | |
| 86 | fg_err fg_get_vector_field_vertex_buffer(unsigned* pOut, const fg_vector_field pField) |
| 87 | { |
no test coverage detected