Loading...
Searching...
No Matches
ElevationGraph Class Referenceabstract

Сlass describing a graph that connects the sublocations. More...

Inherits Finalizable.

Public Attributes

List< GraphEdge > get edges
 List of edges that connect two sublocations GraphEdge.
 

Detailed Description

Сlass describing a graph that connects the sublocations.

Referenced from Location

Definition at line 19 of file elevation_graph.dart.

Member Data Documentation

◆ edges

List<GraphEdge> get ElevationGraph.edges

List of edges that connect two sublocations GraphEdge.

Dart code snippet:

// Get elevation graph edges
List<GraphEdge> edges = elevationGraph.getEdges();
print('Number of elevation graph edges: ${edges.length}');
// Demonstrate each edge
for (int i = 0; i < edges.length; i++) {
GraphEdge edge = edges[i];
print('Elevation graph edge ${i + 1}:');
demonstrateGraphEdgeUsage(edge);
}

Definition at line 31 of file elevation_graph.dart.


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