 | Node Constructor |
[This is preliminary documentation and is subject to change.]
Initializes a new instance of the
Node class.
Namespace:
TrafficSimulation.Simulation.Engine.Environment
Assembly:
TrafficSimulation.Simulation.Engine (in TrafficSimulation.Simulation.Engine.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic Node(
double x,
double y,
NodeType type = NodeType.Standard
)
Public Sub New (
x As Double,
y As Double,
Optional type As NodeType = NodeType.Standard
)
public:
Node(
double x,
double y,
NodeType type = NodeType::Standard
)
new :
x : float *
y : float *
?type : NodeType
(* Defaults:
let _type = defaultArg type NodeType.Standard
*)
-> NodeParameters
- x
- Type: SystemDouble
The x coordinate - y
- Type: SystemDouble
The y coordinate - type (Optional)
- Type: TrafficSimulation.Simulation.Engine.EnvironmentNodeType
The type of the node. Optional Parameter/>
See Also