From c5045bc84e3011c26504d65fda376431fcb695d3 Mon Sep 17 00:00:00 2001 From: BezPowell Date: Sat, 29 Aug 2020 20:19:49 +0100 Subject: [PATCH 1/4] Add blitz-path august content --- content/posts/newsletter-013/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/posts/newsletter-013/index.md b/content/posts/newsletter-013/index.md index b9c455648..60758558d 100644 --- a/content/posts/newsletter-013/index.md +++ b/content/posts/newsletter-013/index.md @@ -66,6 +66,11 @@ If needed, a section can be split into subsections with a "------" delimiter. ## Library & Tooling Updates +### [blitz-path](https://github.com/BezPowell/blitz-path) +[blitz-path](https://github.com/BezPowell/blitz-path) is a new crate providing an implementation of the [JPS](https://en.wikipedia.org/wiki/Jump_point_search) pathfinding algorithm. + +JPS is an optimization of the A* search algorithm for uniform-cost grids, which are common in games. While fully functional, the code is still in an early state and any suggestions for improvements - especially on how best to integrate it with the existing ecosystem - are greatly appreciated. + ## Popular Workgroup Issues in Github ## Meeting Minutes From 3dcde949cafe5c98fa208c08979f1732f885b85a Mon Sep 17 00:00:00 2001 From: BezPowell <41268328+BezPowell@users.noreply.github.com> Date: Sun, 30 Aug 2020 09:29:02 +0100 Subject: [PATCH 2/4] Update content/posts/newsletter-013/index.md Following 17cupsofcoffee's suggestion. Co-authored-by: Joe Clay <27cupsofcoffee@gmail.com> --- content/posts/newsletter-013/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/posts/newsletter-013/index.md b/content/posts/newsletter-013/index.md index 60758558d..db0c19020 100644 --- a/content/posts/newsletter-013/index.md +++ b/content/posts/newsletter-013/index.md @@ -67,7 +67,9 @@ If needed, a section can be split into subsections with a "------" delimiter. ## Library & Tooling Updates ### [blitz-path](https://github.com/BezPowell/blitz-path) -[blitz-path](https://github.com/BezPowell/blitz-path) is a new crate providing an implementation of the [JPS](https://en.wikipedia.org/wiki/Jump_point_search) pathfinding algorithm. +[blitz-path](https://github.com/BezPowell/blitz-path) is a new crate providing +an implementation of the [JPS](https://en.wikipedia.org/wiki/Jump_point_search) +pathfinding algorithm. JPS is an optimization of the A* search algorithm for uniform-cost grids, which are common in games. While fully functional, the code is still in an early state and any suggestions for improvements - especially on how best to integrate it with the existing ecosystem - are greatly appreciated. From e6120d011a75779f83c7817a30532884914e3ad3 Mon Sep 17 00:00:00 2001 From: BezPowell <41268328+BezPowell@users.noreply.github.com> Date: Sun, 30 Aug 2020 09:29:51 +0100 Subject: [PATCH 3/4] Update content/posts/newsletter-013/index.md Co-authored-by: Joe Clay <27cupsofcoffee@gmail.com> --- content/posts/newsletter-013/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/posts/newsletter-013/index.md b/content/posts/newsletter-013/index.md index db0c19020..3ae618c7b 100644 --- a/content/posts/newsletter-013/index.md +++ b/content/posts/newsletter-013/index.md @@ -71,7 +71,10 @@ If needed, a section can be split into subsections with a "------" delimiter. an implementation of the [JPS](https://en.wikipedia.org/wiki/Jump_point_search) pathfinding algorithm. -JPS is an optimization of the A* search algorithm for uniform-cost grids, which are common in games. While fully functional, the code is still in an early state and any suggestions for improvements - especially on how best to integrate it with the existing ecosystem - are greatly appreciated. +JPS is an optimization of the A* search algorithm for uniform-cost grids, which +are common in games. While fully functional, the code is still in an early +state and any suggestions for improvements - especially on how best to +integrate it with the existing ecosystem - are greatly appreciated. ## Popular Workgroup Issues in Github From 3822466edd4e79361efad675c0346f53939e614f Mon Sep 17 00:00:00 2001 From: BezPowell <41268328+BezPowell@users.noreply.github.com> Date: Mon, 31 Aug 2020 09:51:45 +0100 Subject: [PATCH 4/4] Update content/posts/newsletter-013/index.md Co-authored-by: Joe Clay <27cupsofcoffee@gmail.com> --- content/posts/newsletter-013/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/posts/newsletter-013/index.md b/content/posts/newsletter-013/index.md index 3ae618c7b..83aed28a0 100644 --- a/content/posts/newsletter-013/index.md +++ b/content/posts/newsletter-013/index.md @@ -67,6 +67,7 @@ If needed, a section can be split into subsections with a "------" delimiter. ## Library & Tooling Updates ### [blitz-path](https://github.com/BezPowell/blitz-path) + [blitz-path](https://github.com/BezPowell/blitz-path) is a new crate providing an implementation of the [JPS](https://en.wikipedia.org/wiki/Jump_point_search) pathfinding algorithm.