point_array.cpp 927 B

1234567891011121314151617181920212223242526272829
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Unit Test
  3. // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
  4. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
  5. // Copyright (c) 2009-2012 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. }