pathfinding 3.0.1 pathfinding: ^3.0.1 copied to clipboard
A Dart port of https://github.com/qiao/PathFinding.js library
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add pathfinding
With Flutter:
$ flutter pub add pathfinding
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
pathfinding: ^3.0.1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:pathfinding/core/grid.dart';
import 'package:pathfinding/core/heap.dart';
import 'package:pathfinding/core/heuristic.dart';
import 'package:pathfinding/core/node.dart';
import 'package:pathfinding/core/util.dart';
import 'package:pathfinding/finders/astar.dart';
import 'package:pathfinding/finders/jps.dart';