/Src/Dependencies/Boost/libs/geometry/test/point_concept/array_point.cpp

http://hadesmem.googlecode.com/ · C++ · 29 lines · 11 code · 8 blank · 10 comment · 0 complexity · 67c9522c8221fb8e9e8a79bec5e831ec MD5 · raw file

  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Unit Test
  3. // Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands.
  4. // Copyright (c) 2008-2011 Bruno Lalande, Paris, France.
  5. // Copyright (c) 2009-2011 Mateusz Loskot, London, UK.
  6. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  7. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  8. // Use, modification and distribution is subject to the Boost Software License,
  9. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  10. // http://www.boost.org/LICENSE_1_0.txt)
  11. #include <test_common/test_point.hpp>
  12. #include <boost/geometry/geometries/adapted/c_array.hpp>
  13. #include "function_requiring_a_point.hpp"
  14. BOOST_GEOMETRY_REGISTER_C_ARRAY_CS(cs::cartesian)
  15. int main()
  16. {
  17. float p1[3] = { 0, 0, 0 };
  18. const float p2[3] = { 0, 0, 0 };
  19. test::function_requiring_a_point(p1, p2);
  20. return 0;
  21. }