@@ -10,14 +10,15 @@ int main()
10
10
using namespace boost ::geometry;
11
11
using point_t = model::point<double , 3 , cs::cartesian>;
12
12
using ring_t = model::ring<point_t >;
13
+ /*
13
14
using polyhedral_t = model::polyhedral_surface<ring_t>;
14
15
15
16
// intializing an empty polyhedral surface (deafault constructor)
16
17
polyhedral_t polyhedral2;
17
18
18
19
// creating a polyhderal surface using standard initiallized list
19
20
polyhedral_t polyhedral1 = {{{0,0,0}, {0, 1, 0}, {1, 1, 0}, {1, 0, 0}, {0, 0, 0}}, {{0, 0, 0}, {0, 1, 0}, {0, 1, 1}, {0, 0, 1}, {0, 0, 0}},
20
- {{0 , 0 , 0 }, {1 , 0 , 0 }, {1 , 0 , 1 }, {0 , 0 , 1 }, {0 , 0 , 0 }}, {{1 , 1 , 1 }, {1 , 0 , 1 }, {0 , 0 , 1 }, {0 , 1 , 1 }, {1 , 1 , 1 }}, {{1 , 1 , 1 }, {1 , 0 , 1 }, {1 , 0 , 0 }, {1 , 1 , 0 }, {1 , 1 , 1 }},
21
+ {{0, 0, 0}, {1, 0, 0}, {1, 0, 1}, {0, 0, 1}, {0, 0, 0}}, {{1, 1, 1}, {1, 0, 1}, {0, 0, 1}, {0, 1, 1}, {1, 1, 1}}, {{1, 1, 1}, {1, 0, 1}, {1, 0, 0}, {1, 1, 0}, {1, 1, 1}},
21
22
{{1, 1, 1}, {1, 1, 0}, {0, 1, 0}, {0, 1, 1}, {1, 1, 1}}};
22
23
23
24
// modifying a polyhedral surface
@@ -33,4 +34,6 @@ int main()
33
34
34
35
// clear polyhedral surface
35
36
clear(polyhedral1);
37
+
38
+ */
36
39
}
0 commit comments