Panda3D
Loading...
Searching...
No Matches
fogAttrib.I
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file fogAttrib.I
10 * @author drose
11 * @date 2002-03-14
12 */
13
14/**
15 * Use FogAttrib::make() to construct a new FogAttrib object.
16 */
17INLINE FogAttrib::
18FogAttrib() {
19}
20
21/**
22 * Returns true if the FogAttrib is an 'off' FogAttrib, indicating that it
23 * should disable fog.
24 */
25INLINE bool FogAttrib::
26is_off() const {
27 return _fog == nullptr;
28}
29
30/**
31 * If the FogAttrib is not an 'off' FogAttrib, returns the fog that is
32 * associated. Otherwise, return NULL.
33 */
34INLINE Fog *FogAttrib::
35get_fog() const {
36 return _fog;
37}
get_fog
If the FogAttrib is not an 'off' FogAttrib, returns the fog that is associated.
Definition fogAttrib.h:38
bool is_off() const
Returns true if the FogAttrib is an 'off' FogAttrib, indicating that it should disable fog.
Definition fogAttrib.I:26
Specifies how atmospheric fog effects are applied to geometry.
Definition fog.h:41