mirror of
https://github.com/visioncortex/vtracer.git
synced 2025-12-07 09:36:09 -08:00
10 lines
276 B
Rust
10 lines
276 B
Rust
use visioncortex::PathSimplifyMode;
|
|
|
|
pub fn path_simplify_mode(s: &str) -> PathSimplifyMode {
|
|
match s {
|
|
"polygon" => PathSimplifyMode::Polygon,
|
|
"spline" => PathSimplifyMode::Spline,
|
|
"none" => PathSimplifyMode::None,
|
|
_ => panic!("unknown PathSimplifyMode {}", s),
|
|
}
|
|
} |