Version: 9.15.0
gui.graph.node Class Reference

Public Member Functions

def __init__ (self, coord, index)
 

Public Attributes

 coord
 
 index
 
 blocked
 
 total
 
 path_cost
 
 parent
 
 open
 
 close
 

Detailed Description

Definition at line 286 of file graph.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 287 of file graph.py.

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

Member Data Documentation

◆ blocked

gui.graph.node.blocked

Definition at line 290 of file graph.py.

◆ close

gui.graph.node.close

Definition at line 295 of file graph.py.

◆ coord

gui.graph.node.coord

Definition at line 288 of file graph.py.

◆ index

gui.graph.node.index

Definition at line 289 of file graph.py.

◆ open

gui.graph.node.open

Definition at line 294 of file graph.py.

◆ parent

gui.graph.node.parent

Definition at line 293 of file graph.py.

Referenced by gui.Appli.Runner.run().

◆ path_cost

gui.graph.node.path_cost

Definition at line 292 of file graph.py.

◆ total

gui.graph.node.total

Definition at line 291 of file graph.py.


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