Version: 8.3.0
gui.graph.node Class Reference

Public Member Functions

def __init__
 

Public Attributes

 coord
 
 index
 
 blocked
 
 total
 
 path_cost
 
 parent
 
 open
 
 close
 

Detailed Description

Definition at line 286 of file graph.py.

Constructor & Destructor Documentation

def gui.graph.node.__init__ (   self,
  coord,
  index 
)

Definition at line 287 of file graph.py.

288  def __init__(self,coord,index):
289  self.coord=coord
290  self.index=index
291  self.blocked=0
292  self.total=0
293  self.path_cost=0
294  self.parent=None
295  self.open=0
296  self.close=0

Member Data Documentation

gui.graph.node.blocked

Definition at line 290 of file graph.py.

gui.graph.node.close

Definition at line 295 of file graph.py.

gui.graph.node.coord

Definition at line 288 of file graph.py.

gui.graph.node.index

Definition at line 289 of file graph.py.

gui.graph.node.open

Definition at line 294 of file graph.py.

gui.graph.node.parent

Definition at line 293 of file graph.py.

gui.graph.node.path_cost

Definition at line 292 of file graph.py.

gui.graph.node.total

Definition at line 291 of file graph.py.


The documentation for this class was generated from the following file: