#include "Polytope.h" namespace GtpVisibilityPreprocessor { /************************************************ * class Polyhedron implementation * ***********************************************/ bool Polyhedron::IsBounded() { return true; } /************************************************ * class Polytope implementation * ***********************************************/ Polytope::Polytope(const Polyhedron &boundedPoly) { } void Polytope::Split(Hyperplane *plane, Polytope *front, Polytope *back) { } }