16 lines
429 B
Plaintext
16 lines
429 B
Plaintext
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include "stdcycles.h"
|
|
|
|
shader node_mix_vector(int use_clamp = 0,
|
|
float Factor = 0.5,
|
|
vector A = 0.0,
|
|
vector B = 0.0,
|
|
output vector Result = 0.0)
|
|
{
|
|
float t = (use_clamp) ? clamp(Factor, 0.0, 1.0) : Factor;
|
|
Result = mix(A, B, t);
|
|
}
|