diff options
Diffstat (limited to 'src/Utils/ValuePoint.cpp')
-rw-r--r-- | src/Utils/ValuePoint.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Utils/ValuePoint.cpp b/src/Utils/ValuePoint.cpp new file mode 100644 index 0000000..d9cdc64 --- /dev/null +++ b/src/Utils/ValuePoint.cpp @@ -0,0 +1,7 @@ +#include <HyperNeat/Utils/ValuePoint.hpp> + +using namespace hyperneat; + +ValuePoint::ValuePoint(double x, double y, double value, double segment) + : Point(x, y), _value(value), _segment(segment) +{} |