/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2011-2016 Danny Robson */ #ifndef __UTIL_POINT_HPP #define __UTIL_POINT_HPP #include "vector.hpp" #include "coord.hpp" #include namespace util { /// An n-dimensional position in space. template struct point : public coord::base { using coord::base::base; vector to (point) const; vector from (point) const; template point homog (void) const; static constexpr point origin (void); void sanity (void) const; }; // distance operators template typename std::common_type::type distance (point, point); template constexpr typename std::common_type::type distance2 (point, point); template typename std::common_type::type octile (point<2,T>, point<2,U>); template constexpr typename std::common_type::type manhattan (point, point); template constexpr typename std::common_type::type chebyshev (point, point); // Convenience typedefs template using point1 = point<1,T>; template using point2 = point<2,T>; template using point3 = point<3,T>; template using point4 = point<4,T>; template using pointi = point; template using pointf = point; typedef point1 point1f; typedef point2 point2f; typedef point3 point3f; typedef point4 point4f; typedef point2 point2d; typedef point3 point3d; typedef point4 point4d; typedef point1 point1u; typedef point2 point2u; typedef point3 point3u; typedef point4 point4u; typedef point2 point2i; typedef point3 point3i; typedef point4 point4i; } #include namespace std { template struct hash> { size_t operator() (util::point p) const { std::hash h; size_t k = 0; for (size_t i = 0; i < S; ++i) k = h (p.data[i] ^ k); return k; } }; } #include "point.ipp" #endif // __UTIL_POINT_HPP