Skip to content

BDI-ENIB/summerbot-pathfinder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Small Scale PathFinder Lib

Based on a dijkstra algorithm

usage

PathFinder pf;
PathFinderNode node1* new PathFinderNode(0,0);
PathFinderNode node2* new PathFinderNode(10,10);
node1->addLink(node2);
pf.addNode(node1);
pf.addNode(node2);
PathFinderNode* s1 = pf.findPath(node1,node2);
PathFinderNode* s2 = pf.findPath(0,1,node2);
PathFinderNode* s3 = pf.findPath(0,1,11,12);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%