Thanks to visit codestin.com
Credit goes to docs.rs

Skip to main content

Crate use_face

Crate use_face 

Source
Expand description

§use-face

Face primitives for the RustUse geometry workspace.

use-face owns the generic Face type for the geometry facade and keeps face boundaries as index lists.

§Example

use use_face::Face;

let face = Face::new(vec![0, 1, 2]).expect("at least three vertices");

assert_eq!(face.edge_count(), 3);

Structs§

Face
A face boundary represented by vertex indices.