Inherits Parma_Polyhedra_Library::Polyhedron.
Public Member Functions | |
C_Polyhedron (dimension_type num_dimensions=0, Degenerate_Kind kind=UNIVERSE) | |
Builds either the universe or the empty C polyhedron. | |
C_Polyhedron (const ConSys &cs) | |
Builds a C polyhedron from a system of constraints. | |
C_Polyhedron (ConSys &cs) | |
Builds a C polyhedron recycling a system of constraints. | |
C_Polyhedron (const GenSys &gs) | |
Builds a C polyhedron from a system of generators. | |
C_Polyhedron (GenSys &gs) | |
Builds a C polyhedron recycling a system of generators. | |
C_Polyhedron (const NNC_Polyhedron &y) | |
Builds a C polyhedron from the NNC polyhedron y . | |
template<typename Box> | C_Polyhedron (const Box &box, From_Bounding_Box dummy) |
Builds a C polyhedron out of a generic, interval-based bounding box. | |
C_Polyhedron (const C_Polyhedron &y) | |
Ordinary copy-constructor. | |
C_Polyhedron & | operator= (const C_Polyhedron &y) |
The assignment operator. (*this and y can be dimension-incompatible.). | |
~C_Polyhedron () | |
Destructor. | |
Static Public Member Functions | |
dimension_type | max_space_dimension () |
Returns the maximum space dimension a C_Polyhedron can handle. |
An object of the class C_Polyhedron represents a topologically closed convex polyhedron in the vector space .
When building a closed polyhedron starting from a system of constraints, an exception is thrown if the system contains a strict inequality constraint. Similarly, an exception is thrown when building a closed polyhedron starting from a system of generators containing a closure point.
|
Builds either the universe or the empty C polyhedron.
|
|
Builds a C polyhedron from a system of constraints. The polyhedron inherits the space dimension of the constraint system.
|
|
Builds a C polyhedron recycling a system of constraints. The polyhedron inherits the space dimension of the constraint system.
|
|
Builds a C polyhedron from a system of generators. The polyhedron inherits the space dimension of the generator system.
|
|
Builds a C polyhedron recycling a system of generators. The polyhedron inherits the space dimension of the generator system.
|
|
Builds a C polyhedron from the NNC polyhedron
|
|
Builds a C polyhedron out of a generic, interval-based bounding box. For a description of the methods that should be provided by the template class Box, see the documentation of the protected method: template <typename Box> Polyhedron::Polyhedron(Topology topol, const Box& box);
|