Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DNA_light_defaults.h « makesdna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dceaaf7c2783991321ecb43172ddad9a67647041 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

/** \file
 * \ingroup DNA
 */

#ifndef __DNA_LIGHT_DEFAULTS_H__
#define __DNA_LIGHT_DEFAULTS_H__

/* Struct members on own line. */
/* clang-format off */

/* -------------------------------------------------------------------- */
/** \name Light Struct
 * \{ */

#define _DNA_DEFAULT_Light \
  { \
    .r = 1.0f, \
    .g = 1.0f, \
    .b = 1.0f, \
    .k = 1.0f, \
    .energy = 10.0f, \
    .dist = 25.0f, \
    .spotsize = DEG2RADF(45.0f), \
    .spotblend = 0.15f, \
    .att2 = 1.0f, \
    .mode = LA_SHADOW, \
    .bufsize = 512, \
    .clipsta = 0.05f, \
    .clipend = 40.0f, \
    .bleedexp = 2.5f, \
    .samp = 3, \
    .bias = 1.0f, \
    .soft = 3.0f, \
    .area_size = 0.25f, \
    .area_sizey = 0.25f, \
    .area_sizez = 0.25f, \
    .buffers = 1, \
    .preview = NULL, \
    .falloff_type = LA_FALLOFF_INVSQUARE, \
    .coeff_const = 1.0f, \
    .coeff_lin = 0.0f, \
    .coeff_quad = 0.0f, \
    .cascade_max_dist = 200.0f, \
    .cascade_count = 4, \
    .cascade_exponent = 0.8f, \
    .cascade_fade = 0.1f, \
    .contact_dist = 0.2f, \
    .contact_bias = 0.03f, \
    .contact_spread = 0.2f, \
    .contact_thickness = 0.2f, \
    .spec_fac = 1.0f, \
    .att_dist = 40.0f, \
    .sun_angle = DEG2RADF(0.526f), \
  }

/** \} */

/* clang-format on */

#endif /* __DNA_LIGHT_DEFAULTS_H__ */