Vuo 2.4.4
Loading...
Searching...
No Matches
VuoBlurShape.h
Go to the documentation of this file.
1
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
27typedef enum
28{
29 VuoBlurShape_Gaussian,
30 VuoBlurShape_Linear,
31 VuoBlurShape_Box,
32 VuoBlurShape_Disc,
34
35#define VuoBlurShape_SUPPORTS_COMPARISON
37
38VuoBlurShape VuoBlurShape_makeFromJson(struct json_object *js);
39struct json_object *VuoBlurShape_getJson(const VuoBlurShape value);
41char *VuoBlurShape_getSummary(const VuoBlurShape value);
42
43bool VuoBlurShape_areEqual(const VuoBlurShape valueA, const VuoBlurShape valueB);
44bool VuoBlurShape_isLessThan(const VuoBlurShape valueA, const VuoBlurShape valueB);
45
54
59#ifdef __cplusplus
60}
61#endif