1#![deny(rustdoc::missing_crate_level_docs)]
2#![deny(missing_docs)]
3#![deny(missing_debug_implementations)]
4#![doc = include_str!("../Readme.md")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/graphics-rs/dev/.github/metadata/logo.svg")]
6#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/graphics-rs/dev/.github/metadata/logo.svg")]
7#![doc(html_root_url = "https://docs.rs/shape-core/latest")]
8
9pub type Point = shape_core::Point<f32>;
11pub type Circle = shape_core::Circle<f32>;
13pub type Ellipse = shape_core::Ellipse<f32>;
15pub type Line = shape_core::Line<f32>;
17pub type Square = shape_core::Square<f32>;
19pub type Rectangle = shape_core::Rectangle<f32>;
21pub type Triangle = shape_core::Triangle<f32>;
23pub type Polygon = shape_core::Polygon<f32>;
25pub type Polyline = shape_core::Polyline<f32>;
27pub type RegularPolygon = shape_core::RegularPolygon<f32>;