rive_rs/shapes/
path_space.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use bitflags::bitflags;
6
7bitflags! {
8    #[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
9    pub struct PathSpace: u8 {
10        const LOCAL = 0b0001;
11        const WORLD = 0b0010;
12        const DIFFERENCE = 0b0100;
13        const CLIPPING = 0b1000;
14    }
15}