// Copyright (c) 1999,2016 // Utrecht University (The Netherlands), // ETH Zurich (Switzerland), // INRIA Sophia-Antipolis (France), // Max-Planck-Institute Saarbruecken (Germany), // and Tel-Aviv University (Israel). All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Homogeneous_kernel/include/CGAL/Homogeneous/Weighted_point_3.h $ // $Id: Weighted_point_3.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Mariette Yvinec // Sylvain Pion #ifndef CGAL_HOMOGENEOUS_WEIGHTED_POINT_3_H #define CGAL_HOMOGENEOUS_WEIGHTED_POINT_3_H #include #include #include #include namespace CGAL { template < class R_ > class Weighted_pointH3 { typedef typename R_::Point_3 Point_3; typedef typename R_::FT FT; typedef FT Weight; typedef boost::tuple Rep; typedef typename R_::template Handle::type Base; Base base; public: Weighted_pointH3 () {} Weighted_pointH3(const Origin &o) : base(o,0) {} explicit Weighted_pointH3 (const Point_3 &p) : base(p,0) {} Weighted_pointH3 (const Point_3 &p, const Weight &w) : base(p,w) {} // Constructors from coordinates are also provided for convenience, except // that they are only from Cartesian coordinates, and with no weight, so as // to avoid any potential ambiguity between the homogeneous weight and the // power weight (it should be easy enough to pass a Point_3 explicitly in those // cases). Weighted_pointH3 (const FT &x, const FT &y, const FT &z) : base(Point_3(x, y, z), 0) {} const Point_3 & point() const { return get_pointee_or_identity(base).template get<0>(); } const Weight & weight() const { return get_pointee_or_identity(base).template get<1>(); } }; template < class R_ > std::ostream & operator<<(std::ostream &os, const Weighted_pointH3 &p) { switch(get_mode(os)) { case IO::ASCII : return os << p.point() << " " << p.weight(); case IO::BINARY : os << p.point(); write(os, p.weight()); return os; default: return os << "Weighted_point_3(" << p.point() << ", " << p.weight() << ")"; } } template < class R_ > std::istream & operator>>(std::istream &is, Weighted_pointH3 &wp) { typename Weighted_pointH3::Weight w; typename Weighted_pointH3::Point_3 p; is >> p; if(!is) return is; if(is_ascii(is)) is >> w; else read(is, w); if (is) wp = Weighted_point_3(p,w); return is; } } // namespace CGAL #endif // CGAL_HOMOGENEOUS_WEIGHTED_POINT_3_H