DHART
Loading...
Searching...
No Matches
edge.cpp
Go to the documentation of this file.
1
7
8#include <Edge.h>
9
10namespace HF {
11 namespace SpatialStructures {
12 Edge::Edge(const Node& Child, float Score, STEP Step_Type) :child(Child), step_type(Step_Type), score(Score) {};
13 }
14}
Contains definitions for the Edge structure.
Perform human scale analysis on 3D environments.
STEP
Describes the type of step an edge connects to.
Definition: Edge.h:15
Edge()
Default Constructor.
Definition: Edge.h:53
A point in space with an ID.
Definition: node.h:38