1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
// Copyright 2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "CameraShared.h"
#ifdef __cplusplus
namespace ispc {
#endif // __cplusplus
struct OrthographicCamera
{
Camera super;
vec3f dir;
// below are essentially unions: 1. if no motionBlur; 2. if motionBlur
vec3f org; // lower left position of the camera image plane;
// origin of camera
vec3f du_size; // sensor size (in x and y)
vec3f dv_up; // up vector with magnitude equal to the imagePlane size in y
float height; // size of the imagePlane in y
#ifdef __cplusplus
OrthographicCamera()
: dir(0.f), org(0.f), du_size(0.f), dv_up(0.f), height(1.f)
{
super.type = CAMERA_TYPE_ORTHOGRAPHIC;
}
};
} // namespace ispc
#else
};
#endif // __cplusplus
|