| 16 | namespace forge |
| 17 | { |
| 18 | VectorField::VectorField(const unsigned pNumPoints, const dtype pDataType, const ChartType pChartType) |
| 19 | { |
| 20 | fg_vector_field temp = 0; |
| 21 | FG_THROW(fg_create_vector_field(&temp, pNumPoints, (fg_dtype)pDataType, pChartType)); |
| 22 | std::swap(mValue, temp); |
| 23 | } |
| 24 | |
| 25 | VectorField::VectorField(const VectorField& pOther) |
| 26 | { |
nothing calls this directly
no test coverage detected