Advertisement
karlicoss

a code formatting question

Oct 31st, 2011
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. const std::vector<std::pair<std::pair<Segment, Point>, Orientation> tests = { {{s, Point(1.0, 2.0)}, Left},
  2.                                                                               {{s, Point(100.0, 200.0)}, Left},
  3.                                                                               {{s, Point(0.0, 0.0 + 1E-10), Left}},
  4.                                                                               {{s, Point(0.0, 128 * std::numeric_limits<double>::epsilon()), Left}},
  5.                                                                             };
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement