| 122 | } |
| 123 | |
| 124 | Surface Chart::surface(const unsigned pNumXPoints, const unsigned pNumYPoints, const dtype pDataType, |
| 125 | const PlotType pPlotType, const MarkerType pMarkerType) |
| 126 | { |
| 127 | fg_surface temp = 0; |
| 128 | FG_THROW(fg_add_surface_to_chart(&temp, get(), pNumXPoints, pNumYPoints, (fg_dtype)pDataType, |
| 129 | pPlotType, pMarkerType)); |
| 130 | return Surface(temp); |
| 131 | } |
| 132 | |
| 133 | VectorField Chart::vectorField(const unsigned pNumPoints, const dtype pDataType) |
| 134 | { |
no test coverage detected