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
13pub mod angle;
14pub mod line_segment;
15pub mod rect;
16pub mod transform2d;
17pub mod transform3d;
18pub mod unit_vector;
19pub mod util;
20pub mod vector;
21