Home
last modified time | relevance | path

Searched refs:point_3d (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/libs/geometry/test/formulas/
Dintersection.cpp111 typedef bg::model::point<double, 3, bg::cs::cartesian> point_3d; in test_formulas() typedef
116 point_3d a1v = bg::formula::geo_to_cart3d<point_3d>(a1, spheroid); in test_formulas()
117 point_3d a2v = bg::formula::geo_to_cart3d<point_3d>(a2, spheroid); in test_formulas()
118 point_3d b1v = bg::formula::geo_to_cart3d<point_3d>(b1, spheroid); in test_formulas()
119 point_3d b2v = bg::formula::geo_to_cart3d<point_3d>(b2, spheroid); in test_formulas()
120 point_3d resv(0, 0, 0); in test_formulas()
/third_party/boost/libs/geometry/example/
D02_linestring_example.cpp216 typedef model::point<float, 3, cs::cartesian> point_3d; in main() typedef
217 model::linestring<point_3d> line3; in main()
218 line3.push_back(make<point_3d>(1,2,3)); in main()
219 line3.push_back(make<point_3d>(4,5,6)); in main()
220 line3.push_back(make<point_3d>(7,8,9)); in main()
/third_party/boost/boost/geometry/strategies/geographic/
Dintersection_elliptic.hpp36 Point from_cart3d(Point3d const& point_3d) const in from_cart3d()
38 return formula::cart3d_to_geo<Point>(point_3d, m_spheroid); in from_cart3d()
127 Point from_cart3d(Point3d const& point_3d) const in from_cart3d()
129 return formula::cart3d_to_geo<Point>(point_3d, m_spheroid); in from_cart3d()
/third_party/boost/boost/geometry/formulas/
Dgeographic.hpp95 inline PointGeo cart3d_to_geo(Point3d const& point_3d, Spheroid const& spheroid) in cart3d_to_geo() argument
104 calc_t const x = get<0>(point_3d); in cart3d_to_geo()
105 calc_t const y = get<1>(point_3d); in cart3d_to_geo()
106 calc_t const z = get<2>(point_3d); in cart3d_to_geo()
142 inline Point3d projected_to_xy(Point3d const& point_3d, Spheroid const& spheroid) in projected_to_xy() argument
160 set<0>(res, e_sqr * get<0>(point_3d)); in projected_to_xy()
161 set<1>(res, e_sqr * get<1>(point_3d)); in projected_to_xy()
Dspherical.hpp82 static inline PointSph cart3d_to_sph(Point3d const& point_3d) in cart3d_to_sph() argument
87 calc_t const x = get<0>(point_3d); in cart3d_to_sph()
88 calc_t const y = get<1>(point_3d); in cart3d_to_sph()
89 calc_t const z = get<2>(point_3d); in cart3d_to_sph()
/third_party/boost/libs/geometry/test/strategies/
Dmatrix_transformer.cpp24 typedef bg::model::point<coordinate_type, 3, bg::cs::cartesian> point_3d; in test_all() typedef
28 point_3d p3d; in test_all()
/third_party/boost/boost/geometry/strategies/spherical/
Dintersection.hpp893 static Point from_cart3d(Point3d const& point_3d) in from_cart3d()
895 return formula::cart3d_to_sph<Point>(point_3d); in from_cart3d()