| 131 | } |
| 132 | |
| 133 | VectorField Chart::vectorField(const unsigned pNumPoints, const dtype pDataType) |
| 134 | { |
| 135 | fg_vector_field temp = 0; |
| 136 | FG_THROW(fg_add_vector_field_to_chart(&temp, get(), pNumPoints, (fg_dtype)pDataType)); |
| 137 | return VectorField(temp); |
| 138 | } |
| 139 | |
| 140 | void Chart::render(const Window& pWindow, |
| 141 | const int pX, const int pY, const int pVPW, const int pVPH) const |
no test coverage detected