| 12345678910111213141516171819202122232425262728293031323334 |
-
- namespace PathfindingPCL
- {
- public abstract class Node
- {
- private Node precursor = null;
- internal Node Precursor
- {
- get
- {
- return precursor;
- }
- set
- {
- precursor = value;
- }
- }
- private double distanceFromBegin = double.PositiveInfinity;
- internal double DistanceFromBegin
- {
- get
- {
- return distanceFromBegin;
- }
- set
- {
- distanceFromBegin = value;
- }
- }
- internal double EstimatedDistance { get; set; }
- }
- }
|