mirror of
https://github.com/penpot/penpot.git
synced 2026-03-11 21:06:48 +00:00
17 lines
279 B
Rust
17 lines
279 B
Rust
use super::Path;
|
|
|
|
#[derive(Debug, Default, Clone, PartialEq)]
|
|
pub struct Bool {
|
|
pub bool_type: BoolType,
|
|
pub path: Path,
|
|
}
|
|
|
|
#[derive(Debug, Default, Clone, Copy, PartialEq)]
|
|
pub enum BoolType {
|
|
#[default]
|
|
Union,
|
|
Difference,
|
|
Intersection,
|
|
Exclusion,
|
|
}
|