Vuo 2.4.4
Loading...
Searching...
No Matches
VuoEdgeBlend.h
Go to the documentation of this file.
1
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
19typedef struct
20{
21 float cutoff;
22 float gamma;
23 float crop;
25
29static inline VuoEdgeBlend VuoEdgeBlend_make(float _cutoff, float _gamma, float _crop) __attribute__((const));
30static inline VuoEdgeBlend VuoEdgeBlend_make(float _cutoff, float _gamma, float _crop)
31{
32 VuoEdgeBlend blend = { _cutoff, _gamma, _crop};
33 return blend;
34}
35
36VuoEdgeBlend VuoEdgeBlend_makeFromJson(struct json_object * js);
37struct json_object * VuoEdgeBlend_getJson(const VuoEdgeBlend value);
38char * VuoEdgeBlend_getSummary(const VuoEdgeBlend value);
39
41
48
49#ifdef __cplusplus
50}
51#endif