mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
18 lines
192 B
C++
18 lines
192 B
C++
//
|
|
// Created by vlad on 2/4/24.
|
|
//
|
|
|
|
#include "omath/color.h"
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
|
|
|
|
namespace omath::color
|
|
{
|
|
|
|
Color::Color() : Vector4(0.f, 0.f, 0.f, 0.f)
|
|
{
|
|
|
|
}
|
|
}
|