File: a_star.html

Recommend this page to a friend!
  Classes of Andoitz Jordan Marmolejo   astar   a_star.html   Download  
File: a_star.html
Role: Example script
Content type: text/plain
Description: Main html
Class: astar
Implement the Pathfinding algorithm in JavaScript
Author: By
Last change:
Date: 9 years ago
Size: 301 bytes
 

Contents

Class file image Download
<html> <head> <script src="a_star.js"></script> <script src="jquery-1.11.0.min.js"></script> <link rel="stylesheet" href="a_star.css"> </head> <body> <div id="tablero"></div> <script> aStar.init({rows:10,cols:10,s:[1,1],d:[8,8],board:[],div:'tablero',blocks:50}); </script> </body> </html>