wrflib_vector 0.0.3

The vector library for Wrflib
Documentation
// Copyright (c) 2021-present, Cruise LLC
//
// This source code is licensed under the Apache License, Version 2.0,
// found in the LICENSE-APACHE file in the root directory of this source tree.
// You may not use this file except in compliance with the License.

pub mod quadratic_segment;

mod affine_transformation;
mod f32_ext;
mod line_segment;
mod linear_transformation;
mod point;
mod rectangle;
mod transform;
mod transformation;
mod trapezoid;
mod vector;

pub use self::affine_transformation::AffineTransformation;
pub(crate) use self::f32_ext::F32Ext;
pub(crate) use self::line_segment::LineSegment;
pub(crate) use self::linear_transformation::LinearTransformation;
pub use self::point::Point;
pub(crate) use self::quadratic_segment::QuadraticSegment;
pub use self::rectangle::Rectangle;
pub use self::transform::Transform;
pub(crate) use self::transformation::Transformation;
pub use self::trapezoid::Trapezoid;
pub use self::vector::Vector;