代码搜索:pathfinding
找到约 56 项符合「pathfinding」的源代码
代码结果 56
www.eeworm.com/read/4060/26422
cpp gd23-04.cpp
// ============================================================================
// GD23-04.cpp
// A-Star Pathfinding Demo
// ======================================================================
www.eeworm.com/read/101014/15857477
h main.h
//-----------------------------------------------------------------------------
// Name: D3D_Pathfinding
//
// Description: Example code showing how to perform path finding.
//
// File Function:
www.eeworm.com/read/101014/15857488
cpp main.cpp
//-----------------------------------------------------------------------------
// Name: D3D_Pathfinding
//
// Description: Example code showing how to perform path finding.
//
// File Function:
www.eeworm.com/read/241573/13135410
txt readme.txt
This demo is for Windows only.
Readme File for PathDemo
------------------------
Bryan Stout
PathDemo was developed as a means of visually illustrating how different
pathfinding algorithms
www.eeworm.com/read/403950/11496237
h directionmap.h
#ifndef DIRECTIONMAP_H
#define DIRECTIONMAP_H
#include "Map.h"
#include "SDLHelpers.h"
// ============================================================================
// New Pathfinding In
www.eeworm.com/read/260986/11678431
h directionmap.h
#ifndef DIRECTIONMAP_H
#define DIRECTIONMAP_H
#include "Map.h"
#include "SDLHelpers.h"
// ============================================================================
// New Pathfinding In
www.eeworm.com/read/206920/15285884
cs simplepathfinder.cs
using System;
using System.Collections.Generic;
namespace HenizeSoftware
{
namespace PathFinding
{
///
/// The SimplePathFinder type is for finding the shortest path fro
www.eeworm.com/read/4060/25305
h directionmap.h
#ifndef DIRECTIONMAP_H
#define DIRECTIONMAP_H
#include "Map.h"
#include "SDLHelpers.h"
// ============================================================================
// New Pathfinding In
www.eeworm.com/read/206920/15285878
cs sortednodelist.cs
//This will later be replaced with something fast such as a binary heap.
using System.Collections.Generic;
namespace HenizeSoftware
{
namespace PathFinding
{
class NodeComparer : ICo
www.eeworm.com/read/206920/15285879
cs coordinate.cs
namespace HenizeSoftware
{
namespace PathFinding
{
public struct Coordinate
{
ushort x;
ushort y;
public Coordinate(int x, int y)
{
this.x = (us