Guest User

Untitled

a guest
Oct 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #include <cstdint>
  2. #include "fortune_line_segment_cluster/boost/libs/polygon/include/boost/polygon/segment_data.hpp"
  3.  
  4. typedef boost::polygon::segment_data_cluster<int32_t, int32_t> LINE_SEGMENT;
  5.  
  6. namespace boost {
  7. namespace polygon {
  8. template <typename CoordinateType, typename ClusterType>
  9. class segment_data_cluster {
  10. public:
  11. typedef ClusterType cluster_type;
  12. typedef CoordinateType coordinate_type;
  13. typedef point_data<coordinate_type> point_type;
  14. // ....
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment