File size: 1,626 Bytes
66c9c8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
    "WarpGridCreate": {
        "version": 1,
        "categoryDefinitions": "../../../../config/warp_categories.json",
        "description": "Creates a geometry mesh grid.",
        "categories": ["warp"],
        "language": "Python",
        "uiName": "Grid Create",
        "cudaPointers": "cpu",
        "inputs": {
            "execIn": {
                "type": "execution",
                "description": "Input execution."
            },
            "transform": {
                "type": "matrixd[4]",
                "uiName": "Transform",
                "description": "World transformation to store alongside the output geometry."
            },
            "size": {
                "type": "float[2]",
                "uiName": "Size",
                "description": "Geometry's size.",
                "default": [100.0, 100.0],
                "metadata": {
                    "minimum": [0.0, 0.0]
                }
            },
            "dims": {
                "type": "int[2]",
                "uiName": "Dims",
                "description": "Dimensions for each side of the grid.",
                "default": [1, 1],
                "metadata": {
                    "minimum": [1, 1]
                }
            }
        },
        "outputs": {
            "execOut": {
                "type": "execution",
                "description": "Output execution."
            },
            "mesh": {
                "type": "bundle",
                "uiName": "Mesh",
                "description": "Output mesh geometry.",
                "memoryType": "cuda"
            }
        }
    }
}