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

Skip to main content

Crate use_cell

Crate use_cell 

Source
Expand description

§use-cell

Cell primitives for the RustUse geometry workspace.

use-cell provides small cell descriptors for representation-oriented geometry. Cell-complex collections live in use-complex, which focuses on geometric complexes rather than complex numbers.

§Example

use use_cell::Cell;

let cell = Cell::new(2, 4).unwrap();

assert_eq!(cell.dimension(), 2);
assert_eq!(cell.boundary_count(), 4);

Structs§

Cell
A cell used by geometric complex crates.