EchoMap 2026-07-25 6d3977c
An experimental cross-platform digital signal processing application for sound-source localisation.
Loading...
Searching...
No Matches
Colour.hpp
Go to the documentation of this file.
1
9
10#ifndef ECHOMAP_COLOUR_HPP
11#define ECHOMAP_COLOUR_HPP
12
13namespace echomap
14{
15
19struct Colour
20{
21 float r = 1.0f;
22 float g = 0.0f;
23 float b = 0.0f;
24 float a = 1.0f;
25};
26
27} // namespace echomap
28
29#endif // ECHOMAP_COLOUR_HPP
The main EchoMap outermost namespace for all non-exported symbols.
A generic RGBA structure.
Definition Colour.hpp:20
float b
The blue component in the range [0, 1].
Definition Colour.hpp:23
float a
The alpha extent in the range [0, 1].
Definition Colour.hpp:24
float g
The green component in the range [0, 1].
Definition Colour.hpp:22
float r
The red component in the range [0, 1].
Definition Colour.hpp:21