Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

from __future__ import absolute_import 

 

from sage.misc.lazy_import import lazy_import 

 

 

from .cone import Cone, random_cone 

 

from .fan import Fan, FaceFan, NormalFan, Fan2d 

 

from .fan_morphism import FanMorphism 

 

from .polyhedron.all import * 

 

from .lattice_polytope import (LatticePolytope, NefPartition, ReflexivePolytope, 

ReflexivePolytopes) 

 

from . import lattice_polytope 

 

from .toric_lattice import ToricLattice 

 

from . import toric_plotter 

 

 

from .hyperbolic_space.all import * 

 

from .voronoi_diagram import * 

 

lazy_import('sage.geometry.ribbon_graph', 'RibbonGraph') 

lazy_import('sage.geometry.hyperplane_arrangement.arrangement', 'HyperplaneArrangements') 

lazy_import('sage.geometry.hyperplane_arrangement.library', 'hyperplane_arrangements')