// ====================================================================== // // Copyright (c) 2000 The CGAL Consortium // // This software and related documentation is part of an INTERNAL release // of the Computational Geometry Algorithms Library (CGAL). It is not // intended for general use. // // ---------------------------------------------------------------------- // // release : // release_date : // // file : include/CGAL/Cartesian/solve_d.h // revision : $Revision$ // revision_date : $Date$ // author(s) : Andreas.Fabri@sophia.inria.fr // coordinator : INRIA Sophia-Antipolis (Mariette.Yvinec@sophia.inria.fr) // // ====================================================================== #ifndef CGAL_CARTESIAN_CARTESIAN_SOLVE_D_H #define CGAL_CARTESIAN_CARTESIAN_SOLVE_D_H #include #include #include CGAL_BEGIN_NAMESPACE template void solve (const VectorCd &v0, const VectorCd &v1, const VectorCd &v2, const VectorCd &d, typename R::FT &alpha, typename R::FT &beta, typename R::FT &gamma) { solve(v0.cartesian(0), v0.cartesian(1), v0.cartesian(2), v1.cartesian(0), v1.cartesian(1), v1.cartesian(2), v2.cartesian(0), v2.cartesian(1), v2.cartesian(2), d.cartesian(0), d.cartesian(1), d.cartesian(2), alpha, beta, gamma); } CGAL_END_NAMESPACE #endif // CGAL_CARTESIAN_CARTESIAN_SOLVE_D_H