1 2 3 4 5 6 7
use crate::array::{CellIndexArray, VertexIndexArray}; impl VertexIndexArray { pub fn owner(&self) -> CellIndexArray { self.iter().map(|vx| vx.map(|vx| vx.owner())).collect() } }