Welcome to mirror list, hosted at ThFree Co, Russian Federation.

global_functions.h « multi_functions « intern « functions « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a36894085d19d8a228e773f8dea09e8837b60809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "FN_multi_function.h"

namespace FN {

void init_global_functions();
void free_global_functions();

extern const MultiFunction *MF_GLOBAL_add_floats_2;
extern const MultiFunction *MF_GLOBAL_multiply_floats_2;
extern const MultiFunction *MF_GLOBAL_subtract_floats;
extern const MultiFunction *MF_GLOBAL_safe_division_floats;
extern const MultiFunction *MF_GLOBAL_sin_float;
extern const MultiFunction *MF_GLOBAL_cos_float;

}  // namespace FN