| 16 | namespace forge |
| 17 | { |
| 18 | Surface::Surface(unsigned pNumXPoints, unsigned pNumYPoints, dtype pDataType, PlotType pPlotType, MarkerType pMarkerType) |
| 19 | { |
| 20 | fg_surface temp = 0; |
| 21 | FG_THROW(fg_create_surface(&temp, pNumXPoints, pNumYPoints, (fg_dtype)pDataType, |
| 22 | pPlotType, pMarkerType)); |
| 23 | std::swap(mValue, temp); |
| 24 | } |
| 25 | |
| 26 | Surface::Surface(const Surface& other) |
| 27 | { |
nothing calls this directly
no test coverage detected