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