Advertisement
Lauda

Untitled

Mar 6th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 KB | None | 0 0
  1. #include <iostream>
  2. #include <thread>
  3. #include <vector>
  4. #include <cmath>
  5.  
  6. using namespace std;
  7.  
  8. struct Point { double x,y; };
  9. vector<Point> points;
  10. typedef vector<Point>::const_iterator Vci;
  11.  
  12. class Circle {
  13.     private:
  14.         double r;
  15.         Point p0;
  16.  
  17.         bool in(const Point &p) {
  18.             return (pow(p.x-p0.x,2)+pow(p.y-p0.y,2) <= pow(r,2));
  19.         }
  20.  
  21.     public:
  22.         Circle(const Point& t, const double r_) : p0(t), r(r_) { }
  23.         void operator()(const vector<Point> p, vector<bool>& belong);
  24. };
  25.  
  26. void Circle::operator()(const vector<Point> p, vector<bool>& belong) {
  27.     for (int i=0; i<p.size(); i++)
  28.         belong[i] = in(p[i]);
  29.  
  30. }
  31.  
  32.  
  33. int main() {
  34.     Circle k({0,0}, 3);
  35.     vector<Point> p={{1,3}, {3,3}, {0,0}, {1,1}};
  36.     vector<bool> b(p.size());
  37.  
  38.     thread t(k, p, ref(b));
  39.     t.join();
  40.  
  41.     for (int i=0; i<b.size(); i++) {
  42.         cout << "Tacka " << i << " {" << p[i].x << ", " << p[i].y << "}";
  43.         if (b[i])
  44.             cout << " je u krugu" << endl;
  45.         else
  46.             cout << " nije u krugu" << endl;
  47.     }
  48.     return 0;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement