Exemple #1
0
        //int modelMatrixUniformIndex;

        public SceneSphere(IRenderableModel model, Sphere3d sphere)
        {
            this.model  = model;
            this.Sphere = sphere;
            UpdatePosition();
        }
Exemple #2
0
        //int modelMatrixUniformIndex;

        public SceneObject(IRenderableModel model, Vector3 position)
        {
            this.model = model;
            //this.modelMatrixUniformIndex = modelMatrixUniformIndex;
            this.Position = position;
        }