Revision 863,
571 bytes
checked in by mattausch, 19 years ago
(diff) |
working on preprocessor integration
added iv stuff
|
Line | |
---|
1 | #include "Polytope.h"
|
---|
2 |
|
---|
3 | namespace GtpVisibilityPreprocessor {
|
---|
4 |
|
---|
5 | /************************************************
|
---|
6 | * class Polyhedron implementation *
|
---|
7 | ***********************************************/
|
---|
8 |
|
---|
9 | bool Polyhedron::IsBounded()
|
---|
10 | {
|
---|
11 | return true;
|
---|
12 | }
|
---|
13 |
|
---|
14 | /************************************************
|
---|
15 | * class Polytope implementation *
|
---|
16 | ***********************************************/
|
---|
17 |
|
---|
18 | Polytope::Polytope(const Polyhedron &boundedPoly)
|
---|
19 | {
|
---|
20 | }
|
---|
21 |
|
---|
22 | void Polytope::Split(Hyperplane *plane, Polytope *front, Polytope *back)
|
---|
23 | {
|
---|
24 | }
|
---|
25 |
|
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.