File: __init__.py

package info (click to toggle)
python-meshzoo 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: python: 1,691; makefile: 8
file content (23 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import ball
import cube
import ellipse
import lshape
import lshape3d
import pacman
import rectangle
import rectangle_with_hole
import tetrahedron
import torus

__all__ = [
    "ball",
    "cube",
    "ellipse",
    "lshape",
    "lshape3d",
    "pacman",
    "rectangle",
    "rectangle_with_hole",
    "tetrahedron",
    "torus",
]