Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm constructing a terrain with constains that can intercept themselves, so I need to change the third parameter of CDT to CGAL::Exact_intersections_tag. I'm getting trouble to find the first default parameter, I found in documentation that the second is CGAL::Default (is this correct?) but I could not find the first. The template is:

typedef CGAL::Constrained_triangulation_plus_2 <CDT> CT;

the construction should be:

CT ct(???,CGAL::Default, CGAL::Exact_intersections_tag);

Can anyone please tell-me how to set the first default parameter?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
361 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...