aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/triangle.rs
blob: 1f2bc92ca4b67268f8322335d9b67b08cefa77c3 (plain)
1
2
3
4
5
6
7
#[cfg(feature = "dim2")]
use crate::{buckler::shape::CuboidFeatureFace, geometry::Triangle, math::Vector};

#[cfg(feature = "dim2")]
pub fn support_face(_triangle: &Triangle, _local_dir: Vector<f32>) -> CuboidFeatureFace {
    unimplemented!()
}