File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
api/src/main/java/de/bsommerfeld/pathetic/api/pathing Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33* .iml
44dependency-reduced-pom.xml
55/javadoc /
6+ .flattened-pom.xml
7+ .DS_Store
8+ /docs /
9+ .vscode /
Original file line number Diff line number Diff line change 2121 *
2222 * <p>Ideal for 3D grid-based environments with diagonal movement and path-straightness penalties.
2323 *
24- * @apiNote This heuristic strategy operates on floored coordinates to ensure consistent and
24+ * @api.Note This heuristic strategy operates on floored coordinates to ensure consistent and
2525 * predictable pathfinding behavior in grid-based environments. The floored coordinates
2626 * represent the discrete grid cell positions that nodes occupy, which is essential for
2727 * maintaining the admissibility and consistency of heuristic calculations in traditional
Original file line number Diff line number Diff line change 2323 *
2424 * <p>Ideal for high-performance pathfinding in large 3D environments.
2525 *
26- * @apiNote This heuristic strategy operates on floored coordinates to ensure consistent and
26+ * @api.Note This heuristic strategy operates on floored coordinates to ensure consistent and
2727 * predictable pathfinding behavior in grid-based environments. The floored coordinates
2828 * represent the discrete grid cell positions that nodes occupy, which is essential for
2929 * maintaining the admissibility and consistency of heuristic calculations in traditional
Original file line number Diff line number Diff line change 66 * Base interface for pathfinding processors. It defines lifecycle methods that can be implemented
77 * by concrete processors to initialize or finalize resources or states related to a path search.
88 *
9- * @apiNote Processors must be thread-safe.
9+ * @api.Note Processors must be thread-safe.
1010 */
1111public interface Processor { // PathPosition is implied globally for pathetic
1212 /**
You can’t perform that action at this time.
0 commit comments