TDME2 1.9.121
Color4.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
8
9using std::array;
10
12
13/**
14 * Color 4 definition
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19 : public Color4Base
20{
21public:
22 /**
23 * Public constructor
24 */
25 inline Color4() : Color4Base() {
26 }
27
28 /**
29 * Public constructor
30 * @param color color
31 */
32 inline Color4(const Color4& color) : Color4Base(color) {
33 }
34
35 /**
36 * Public constructor
37 * @param color color
38 */
39 inline Color4(const Color4Base& color) : Color4Base(color) {
40 }
41
42 /**
43 * Public constructor
44 * @param r red
45 * @param g green
46 * @param b blue
47 * @param a alpha
48 */
49 inline Color4(float r, float g, float b, float a) : Color4Base(r,g,b,a) {
50 }
51
52 /**
53 * Public constructor
54 * @param color color array
55 */
56 inline Color4(const array<float, 4>& color) : Color4Base(color) {
57 }
58
59};
Color 4 base definition class.
Definition: Color4Base.h:19
Color 4 definition.
Definition: Color4.h:20
Color4()
Public constructor.
Definition: Color4.h:25
Color4(float r, float g, float b, float a)
Public constructor.
Definition: Color4.h:49
Color4(const Color4Base &color)
Public constructor.
Definition: Color4.h:39
Color4(const array< float, 4 > &color)
Public constructor.
Definition: Color4.h:56
Color4(const Color4 &color)
Public constructor.
Definition: Color4.h:32