com_croftsoft_core/ai/astar/mod.rs
1// =============================================================================
2//! - A* algorithm for path planning
3//! - This module is documented in the book [`Advanced Java Game Programming`]
4//!
5//! # Metadata
6//! - Copyright: © 2022 [`CroftSoft Inc`]
7//! - Author: [`David Wallace Croft`]
8//! - Rust version: 2022-11-10
9//! - Rust since: 2022-10-21
10//!
11//! # History
12//! - Adapted from the Java package com.croftsoft.core.ai.astar
13//! - In the Java-based [`CroftSoft Core Library`]
14//!
15//! [`Advanced Java Game Programming`]: https://croftsoft.com/library/books/ajgp
16//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
17//! [`CroftSoft Inc`]: https://www.croftsoft.com/
18//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
19// =============================================================================
20
21pub mod constants;
22pub mod functions;
23pub mod methods;
24pub mod operations;
25pub mod structures;
26pub mod trait_imps;
27pub mod traits;
28pub mod types;