mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
13 lines
214 B
C++
13 lines
214 B
C++
//
|
|
// 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);
|
|
} |