Class is used for storing graph vertex. More...
Inherits Finalizable.
Public Attributes | |
| int get | id |
| graph vertex unique identifier. | |
| Point get | point |
| graph vertex position in meters Point. | |
| String get | name |
| graph vertex name. | |
| bool get | isExternal |
| graph vertex can be used to communicate with external graphs or not. | |
| bool get | isElevation |
| graph vertex used in elevation graph ElevationGraph or not. | |
Class is used for storing graph vertex.
Definition at line 19 of file graph_vertex.dart.
| int get GraphVertex.id |
graph vertex unique identifier.
Dart code snippet:
Definition at line 31 of file graph_vertex.dart.
| bool get GraphVertex.isElevation |
graph vertex used in elevation graph ElevationGraph or not.
Dart code snippet:
Definition at line 71 of file graph_vertex.dart.
| bool get GraphVertex.isExternal |
graph vertex can be used to communicate with external graphs or not.
Dart code snippet:
Definition at line 61 of file graph_vertex.dart.
| String get GraphVertex.name |
graph vertex name.
Dart code snippet:
Definition at line 51 of file graph_vertex.dart.
| Point get GraphVertex.point |
graph vertex position in meters Point.
Dart code snippet:
Definition at line 41 of file graph_vertex.dart.