mirror of https://github.com/CGAL/cgal
test clean()
This commit is contained in:
parent
7255939b79
commit
2faa524471
|
|
@ -84,6 +84,12 @@ Polyline number 4:
|
|||
(10.5:10.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
(10.5:10.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
|
|
|
|||
|
|
@ -54,6 +54,12 @@ Polyline number 3:
|
|||
(7.5:7.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(4.5:2.5)
|
||||
(7.5:7.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(4.5:2.5)
|
||||
|
|
|
|||
|
|
@ -34,6 +34,12 @@ Polyline number 2:
|
|||
(7.5:2.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
(7.5:2.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
|
|
|
|||
|
|
@ -54,6 +54,12 @@ Polyline number 3:
|
|||
(10.5:10.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
(10.5:10.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@ Polyline number 2:
|
|||
(4.5:5.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(4.5:1.5)
|
||||
(4.5:5.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(4.5:1.5)
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@ Polyline number 2:
|
|||
(2.5:2.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
(2.5:2.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
|
|
|
|||
|
|
@ -51,6 +51,12 @@ Polyline number 3:
|
|||
(1.5:3.5)
|
||||
|
||||
|
||||
cheking clear
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
(1.5:3.5)
|
||||
|
||||
|
||||
default ctor + multiple insertion
|
||||
Polyline number 1:
|
||||
(0.5:0.5)
|
||||
|
|
|
|||
|
|
@ -114,6 +114,11 @@ int main(int argc,char *argv[])
|
|||
s1.insert(*(seg_list.begin()));
|
||||
print_out(s1);
|
||||
|
||||
std::cout << "\ncheking clear\n";
|
||||
s1.clear();
|
||||
s1.insert(*(seg_list.begin()));
|
||||
print_out(s1);
|
||||
|
||||
Snap_rounding_2 s2(prec,true,4);
|
||||
|
||||
std::cout << "\ndefault ctor + multiple insertion\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue