2023-08-04 13:24:17 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2012-10-20 15:09:36 +00:00
|
|
|
|
2020-02-11 21:40:23 -07:00
|
|
|
#include "stdcycles.h"
|
2012-10-20 15:09:36 +00:00
|
|
|
|
|
|
|
|
surface node_set_normal(normal Direction = N, output normal Normal = N)
|
|
|
|
|
{
|
|
|
|
|
N = Direction;
|
|
|
|
|
Normal = Direction;
|
|
|
|
|
}
|