AStarNode
Class
Represents an instance of the Node class that is used by the AStarRouter.
Definition
Namespace:Telerik.Windows.Diagrams.Core.Routing.AStar
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public class AStarNode
Inheritance: objectAStarNode
Constructors
Properties
Gets or sets the whole path length through this point. This is the sum of G and H.
C#
public double F { get; set; }
Gets or sets the actual distance from the start to the current point in the search.
C#
public double G { get; set; }
Gets or sets the heuristic distance to the endpoint or goal. The smaller the value the closer to the goal.
C#
public double H { get; set; }
Gets or sets whether this node is over an existing connection segment.
C#
public bool IsSegmentOverlap { get; set; }
Gets or sets whether this node is a start or end wall.
C#
public bool IsStartOrEndWall { get; }
The is start wall.
Gets or sets whether this node is wall.
C#
public bool IsWall { get; }
The is wall.