mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
13 lines
238 B
C++
13 lines
238 B
C++
//
|
|
// Created by vlad on 2/4/24.
|
|
//
|
|
|
|
#include "uml/color.h"
|
|
|
|
namespace uml::color
|
|
{
|
|
Vector3 Blend(const uml::Vector3 &first, const uml::Vector3 &second, float ratio)
|
|
{
|
|
return first * (1.f - ratio) + second * ratio;
|
|
}
|
|
} |