use-surface 0.0.6

Surface primitives for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# use-surface

Surface primitives for the RustUse geometry workspace.

`use-surface` provides small descriptors for surface families and parameter-domain patches.

## Example

```rust
use use_surface::{SurfaceKind, SurfacePatch};

let patch = SurfacePatch::new(SurfaceKind::Parametric, 2.0, 3.0).expect("positive domain");

assert_eq!(patch.parameter_area(), 6.0);
```