Euphoria
colors.h
Go to the documentation of this file.
1#pragma once
2
3#include "base/vec3.h"
4
5namespace eu
6{
7 namespace color
8 {
9 constexpr v3 white = v3{1.0f, 1.0f, 1.0f};
10 constexpr v3 black = v3{0.0f, 0.0f, 0.0f};
11 };
12}
constexpr v3 black
Definition colors.h:10
constexpr v3 white
Definition colors.h:9
Definition assert.h:109
a 3d vector
Definition vec3.h:27