|
D.16.1.4 facetWidth
Syntax:
Polymake::facetWidth( polytope p )
Assume:
- p bounded
Type:
- int
Purpose:
- maximal integral width going over all facet normals
Example:
| intmat M[4][3]=1,2,0, 1,0,1, 1,2,1, 1,0,0;
polytope p = polytopeViaPoints(M);
Polymake::facetWidth(p);
|
|