public Camera(double eyeX, double eyeY, double eyeZ, double centerX, double centerY, double centerZ, double upX, double upY, double upZ, Tipo_Camara tipo = Tipo_Camara.TIPO_1)
        {
            this.eyeX = eyeX;
            this.eyeY = eyeY;
            this.eyeZ = eyeZ;

            this.centerX = centerX;
            this.centerY = centerY;
            this.centerZ = centerZ;

            this.upX = upX;
            this.upY = upY;
            this.upZ = upZ;

            this.tipo = tipo;
        }
 public void nextCamera(int pos) => tipo = (Tipo_Camara)UtilsApp.tiposCamaras.GetValue(pos);
 public Camera(Tipo_Camara tipo) : this(0, 0, 0, 0, 0, 0, 0, 0, 0, tipo)
 {
 }