diff --git a/src/PolyhedralGeometry/PolyhedralFan/constructors.jl b/src/PolyhedralGeometry/PolyhedralFan/constructors.jl index 40475a843f5b..d30886b3601a 100644 --- a/src/PolyhedralGeometry/PolyhedralFan/constructors.jl +++ b/src/PolyhedralGeometry/PolyhedralFan/constructors.jl @@ -28,14 +28,14 @@ generated by $\{ \pm e_1, \pm e_2 \}$. julia> Rays = [1 0; 0 1; -1 0; 0 -1]; julia> Cones = IncidenceMatrix([[1, 2], [1, 4], [3, 2], [3, 4]]) -4×4 Matrix{Bool}: - 1 1 0 0 - 1 0 0 1 - 0 1 1 0 - 0 0 1 1 +4×4 IncidenceMatrix +[1, 2] +[1, 4] +[2, 3] +[3, 4] julia> PF = PolyhedralFan(Rays, Cones) -A polyhedral fan in ambient dimension 2 +Polyhedral fan in ambient dimension 2 julia> is_complete(PF) true