-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
80 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
|
||
.. py:module:: moderngl_window.scene | ||
moderngl_window.scene | ||
===================== | ||
|
||
.. autoclass:: Camera | ||
:members: | ||
|
||
.. autoclass:: KeyboardCamera | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: OrbitCamera | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: Scene | ||
:members: | ||
|
||
.. autoclass:: Node | ||
:members: | ||
|
||
.. autoclass:: Mesh | ||
:members: | ||
|
||
.. autoclass:: Material | ||
:members: | ||
|
||
.. autoclass:: MaterialTexture | ||
:members: | ||
|
||
.. autoclass:: MeshProgram | ||
:members: | ||
|
||
Mesh Programs | ||
------------- | ||
|
||
.. autoclass:: moderngl_window.scene.programs.VertexColorProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.ColorLightProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.TextureProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.TextureVertexColorProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.TextureLightProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.TextureLightColorProgram | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: moderngl_window.scene.programs.FallbackProgram | ||
:members: | ||
:show-inheritance: |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
# pylint: disable = missing-docstring | ||
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", | ||
] |