Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* Struct members on own line. */
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Camera Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_CameraDOFSettings \
|
|
{ \
|
|
.aperture_fstop = 2.8f, \
|
|
.aperture_ratio = 1.0f, \
|
|
.focus_distance = 10.0f, \
|
|
}
|
|
|
|
#define _DNA_DEFAULT_CameraStereoSettings \
|
|
{ \
|
|
.interocular_distance = 0.065f, \
|
|
.convergence_distance = 30.0f * 0.065f, \
|
|
.pole_merge_angle_from = DEG2RADF(60.0f), \
|
|
.pole_merge_angle_to = DEG2RADF(75.0f), \
|
|
}
|
|
|
|
#define _DNA_DEFAULT_Camera \
|
|
{ \
|
|
.lens = 50.0f, \
|
|
.sensor_x = DEFAULT_SENSOR_WIDTH, \
|
|
.sensor_y = DEFAULT_SENSOR_HEIGHT, \
|
|
.clip_start = 0.1f, \
|
|
.clip_end = 1000.0f, \
|
|
.drawsize = 1.0f, \
|
|
.ortho_scale = 6.0, \
|
|
.flag = CAM_SHOWPASSEPARTOUT, \
|
|
.passepartalpha = 0.5f, \
|
|
\
|
|
.dof = _DNA_DEFAULT_CameraDOFSettings, \
|
|
\
|
|
.stereo = _DNA_DEFAULT_CameraStereoSettings, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|