com_croftsoft_core/math/geom/
mod.rs

1// =============================================================================
2//! - Geometry
3//!
4//! # Metadata
5//! - Copyright: © 2022-2023 [`CroftSoft Inc`]
6//! - Author: [`David Wallace Croft`]
7//! - Created: 2022-10-23
8//! - Updated: 2023-03-18
9//!
10//! # History
11//! - Adapted from the Java package com.croftsoft.core.math.geom
12//!   - In the Java-based [`CroftSoft Core Library`]
13//!
14//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
15//! [`CroftSoft Inc`]: https://www.croftsoft.com/
16//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
17// =============================================================================
18
19pub mod circle;
20pub mod point_2dd;
21pub mod point_xy;
22pub mod rectangle;