This file contains hidden or 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
| import Base | |
| reload( Base ) | |
| from Base import BaseMaterial | |
| from Base import BaseMesh | |
| from Base import BaseLight | |
| from Base import BaseCamera | |
| from Base import BaseNode | |
| from Base import BaseTransformAnimation | |
| from Base import BaseVectorAnimation |
This file contains hidden or 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
| import TriMeshWriter | |
| reload( TriMeshWriter ) | |
| from TriMeshWriter import TriMeshWriter | |
| import GltfWriter | |
| reload( GltfWriter ) | |
| from GltfWriter import GltfWriter | |
| import os |
This file contains hidden or 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
| #include "cinder/app/App.h" | |
| #include "cinder/app/RendererGl.h" | |
| #include "cinder/gl/gl.h" | |
| #include "cinder/CameraUi.h" | |
| #include "cinder/gltf/File.h" | |
| #include "cinder/gltf/MeshLoader.h" | |
| #include "cinder/qtime/QuickTimeGl.h" | |
| using namespace ci; | |
| using namespace ci::app; |
This file contains hidden or 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
| #include "cinder/app/App.h" | |
| #include "cinder/app/RendererGl.h" | |
| #include "cinder/gl/gl.h" | |
| #include "cinder/CameraUi.h" | |
| using namespace ci; | |
| using namespace ci::app; | |
| using namespace std; | |
| class VaoExampleApp : public App { |
This file contains hidden or 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
| https://github.com/cinder/Cinder/blob/81e55e7eb76c7c856633eaed4679aca5ab6531f4/src/cinder/gl/GlslProg.cpp#L583 | |
| https://github.com/cinder/Cinder/blob/master/src/cinder/gl/EnvironmentCore.cpp#L158 | |
| Uniforms | |
| ------------- | |
| ciModelMatrix | |
| ciModelMatrixInverse | |
| ciModelMatrixInverseTranspose | |
| ciViewMatrix | |
| ciViewMatrixInverse |