| 1 | // pathfinder/geometry/src/lib.rs |
| 2 | // |
| 3 | // Copyright © 2019 The Pathfinder Project Developers. |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | // option. This file may not be copied, modified, or distributed |
| 9 | // except according to those terms. |
| 10 | |
| 11 | //! Basic geometry and linear algebra primitives, optimized with SIMD. |
| 12 | |
| 13 | pub mod angle; |
| 14 | pub mod line_segment; |
| 15 | pub mod rect; |
| 16 | pub mod transform2d; |
| 17 | pub mod transform3d; |
| 18 | pub mod unit_vector; |
| 19 | pub mod util; |
| 20 | pub mod vector; |
| 21 | |