File: __init__.py

package info (click to toggle)
python-moderngl-window 3.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 69,096 kB
  • sloc: python: 12,076; makefile: 21
file content (15 lines) | stat: -rw-r--r-- 479 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from moderngl_window.geometry.attributes import AttributeNames as AttributeNames
from moderngl_window.geometry.bbox import bbox as bbox
from moderngl_window.geometry.cube import cube as cube
from moderngl_window.geometry.quad import quad_2d as quad_2d
from moderngl_window.geometry.quad import quad_fs as quad_fs
from moderngl_window.geometry.sphere import sphere as sphere

__all__ = [
    "AttributeNames",
    "bbox",
    "cube",
    "quad_2d",
    "quad_fs",
    "sphere",
]