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 (21 lines) | stat: -rw-r--r-- 547 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
from .camera import Camera as Camera
from .camera import KeyboardCamera as KeyboardCamera
from .camera import OrbitCamera as OrbitCamera
from .material import Material as Material
from .material import MaterialTexture as MaterialTexture
from .mesh import Mesh as Mesh
from .node import Node as Node
from .programs import MeshProgram as MeshProgram
from .scene import Scene as Scene

__all__ = [
    "Camera",
    "KeyboardCamera",
    "OrbitCamera",
    "Material",
    "MaterialTexture",
    "Mesh",
    "Node",
    "MeshProgram",
    "Scene",
]