1 2 3 4 5 6 7 8 9 10
use crate::math::Real; use crate::shape::{HeightField, HeightFieldCellStatus}; use crate::math::Vector3; impl HeightField { /// Outlines this heightfield’s shape using polylines. pub fn to_outline(&self) -> (Vec<Vector>, Vec<[u32; 2]>) { todo!() } }