Trait fj_kernel::builder::FaceBuilder
source · pub trait FaceBuilder {
fn with_exterior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self;
fn with_interior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self;
}Expand description
Builder API for PartialFace
Required Methods§
sourcefn with_exterior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self
fn with_exterior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self
Update the PartialFace with an exterior polygon
sourcefn with_interior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self
fn with_interior_polygon_from_points(
self,
surface: Handle<Surface>,
points: impl IntoIterator<Item = impl Into<Point<2>>>
) -> Self
Update the PartialFace with an interior polygon