| 116 | } |
| 117 | |
| 118 | void MEDITParser::export_voxels(int* buffer) { |
| 119 | std::copy(m_voxels.begin(), m_voxels.end(), buffer); |
| 120 | } |
| 121 | |
| 122 | void MEDITParser::export_attribute(const std::string& name, Float* buffer) { |
| 123 | std::cerr << "Warning: attribute " << name << " does not exist." << |