Giriş
İmzası şöyle
İmzası şöyle
template<typename Point1, typename Point2>
void subtract_point(Point1 & p1, Point2 const & p2)
Şöyle yaparız.using point = boost::geometry::model::point<int, 2, bg::cs::cartesian>
point p1 (2, 3);
point p2 (5, 7);
subtract_point(p2, p1);
p2 (3,4) değerini alır. Çıktı olarak şunu alırız.(5,7) - (2,3) = (3,4)
Hiç yorum yok:
Yorum Gönder