Fixes in sample c06

[SVN r70118]
This commit is contained in:
Barend Gehrels 2011-03-18 12:08:12 +00:00
parent 0c9e4b52bb
commit e1e92d876b

View File

@ -110,20 +110,20 @@ int main()
// Fill it the my-way, triangle
p1.boundary.push_back(my_point(2, 0));
p1.boundary.push_back(my_point(1, 5));
p1.boundary.push_back(my_point(5, 5));
p1.boundary.push_back(my_point(7, 6));
p1.boundary.push_back(my_point(2, 0));
// Triangle
p1.holes[0].push_back(my_point(2, 1));
p1.holes[0].push_back(my_point(1.9, 2));
p1.holes[0].push_back(my_point(2.4, 2));
p1.holes[0].push_back(my_point(1.9, 2));
p1.holes[0].push_back(my_point(2, 1));
// Box
p1.holes[1].push_back(my_point(3, 3));
p1.holes[1].push_back(my_point(3, 4));
p1.holes[1].push_back(my_point(4, 4));
p1.holes[1].push_back(my_point(4, 3));
p1.holes[1].push_back(my_point(4, 4));
p1.holes[1].push_back(my_point(3, 4));
p1.holes[1].push_back(my_point(3, 3));
std::cout << "Representation of " << p1.name << ": "