Changes between Initial Version and Version 1 of Ticket #29683, comment 24
- Timestamp:
- 05/17/21 07:24:32 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29683, comment 24
initial v1 2 2 3 3 Another possibly irrelevant question: for an empty face, does its `ambient_H_indices` or `ambient_Hrepresentation` mean anything? 4 5 {{{ 6 P = Polyhedron(rays=[(1,0),(0,1)]) 7 F = P.faces(-1)[0] 8 F.ambient_H_indices() # returns (0, 1) 9 F.ambient_Hrepresentation() # (An inequality (1, 0) x + 0 >= 0, An inequality (0, 1) x + 0 >= 0) 10 P.faces(0)[0].ambient_Hrepresentation() # same output as above 11 }}}