added color stuff

This commit is contained in:
2024-05-07 02:12:16 +03:00
parent 8765f83434
commit 4c1c0b7d9b
3 changed files with 28 additions and 1 deletions

13
include/uml/color.h Normal file
View File

@@ -0,0 +1,13 @@
//
// Created by vlad on 2/4/24.
//
#pragma once
#include "uml/Vector3.h"
#include <cstdint>
namespace uml::color
{
[[nodiscard]]
Vector3 Blend(const Vector3& first, const Vector3& second, float ratio);
}