// // Math.hpp // amoeba // // Created by Timothy Prepscius on 12/30/16. // Copyright © 2016 Timothy Prepscius. All rights reserved. // #pragma once #include "Segment1.h" #include "Vector3.hpp" #include "Vector2.hpp" #include #include #include "Zero.h" namespace tjp { namespace core { namespace math { template struct Segment1 { typedef Real value_type; Real begin, end; static const Segment1 Zero; } ; template const Segment1 Segment1::Zero = { zero(), zero() }; } // namespace } // namespace } // namespace