From ce64e12688c8b0c19f731e34d82b94ad0a1af585 Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Thu, 5 Jun 2014 15:00:27 +0530 Subject: [PATCH] Added Trace finder in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bd1b9eaa..a7400e1e 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ var matrix = [ var grid = new PF.Grid(5, 3, matrix); ``` -Currently there are 10 path-finders bundled in this library, namely: +Currently there are 11 path-finders bundled in this library, namely: * `AStarFinder` * * `BreadthFirstFinder` * @@ -84,6 +84,7 @@ Currently there are 10 path-finders bundled in this library, namely: * `BiBreadthFirstFinder` * * `JumpPointFinder` * * `OrthogonalJumpPointFinder` * +* `Trace` * The suffix `Bi` for the last four finders in the above list stands for the bi-directional searching strategy.