[dali_2.3.28] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-scene-loader / public-api / camera-parameters.h
diff --git a/dali-scene-loader/public-api/camera-parameters.h b/dali-scene-loader/public-api/camera-parameters.h
deleted file mode 100644 (file)
index 044c7f4..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-#ifndef DALI_SCENE_LOADER_CAMERA_PARAMETERS_H
-#define DALI_SCENE_LOADER_CAMERA_PARAMETERS_H
-/*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
- // INTERNAL INCLUDES
-#include "dali-scene-loader/public-api/api.h"
-#include "dali-scene-loader/public-api/view-projection.h"
-
-// EXTERNAL INCLUDES
-#include "dali/public-api/math/matrix.h"
-#include "dali/public-api/math/vector3.h"
-
-namespace Dali
-{
-
-class CameraActor;
-
-namespace SceneLoader
-{
-
-struct DALI_SCENE_LOADER_API CameraParameters
-{
-  Matrix matrix = Matrix::IDENTITY;
-  Vector4 orthographicSize = Vector4{ -1.f, 1.f, 1.f, -1.f };
-  float yFov = 60.f;
-  float zNear = 0.1f;
-  float zFar = 1000.f;
-  bool isPerspective = true;
-
-  /**
-   * @return The view-projection matrix of the camera.
-   */
-  ViewProjection GetViewProjection() const;
-
-  /**
-   * @brief Calculates the @a position, @a orientation and @a scale that's defined
-   *        for this camera, and writes it into the respective variable.
-   */
-  void CalculateTransformComponents(Vector3& position, Quaternion& orientation, Vector3& scale) const;
-
-  /**
-   * @brief Configures the camera in the way that it is supposed to be used with
-   *        scene-loader scenes. This means inverted Y and a rotation of 180 degrees
-   *        along the Y axis, plus whatever the parameters define.
-   */
-  void ConfigureCamera(CameraActor& camera) const;
-};
-
-}
-}
-
-#endif // DALI_SCENE_LOADER_CAMERA_PARAMETERS_H