mirror of
https://github.com/Relintai/mat_maker_gd.git
synced 2025-04-30 10:57:56 +02:00
77 lines
1.8 KiB
Plaintext
77 lines
1.8 KiB
Plaintext
{
|
|
"name": "sdf3d_rotate",
|
|
"node_position": {
|
|
"x": 0,
|
|
"y": 0
|
|
},
|
|
"parameters": {
|
|
"ax": 0,
|
|
"ay": 0,
|
|
"az": 0
|
|
},
|
|
"shader_model": {
|
|
"code": "",
|
|
"global": "vec3 rotate3d(vec3 p, vec3 a) {\n\tvec3 rv;\n\tfloat c;\n\tfloat s;\n\tc = cos(a.x);\n\ts = sin(a.x);\n\trv.x = p.x;\n\trv.y = p.y*c+p.z*s;\n\trv.z = -p.y*s+p.z*c;\n\tc = cos(a.y);\n\ts = sin(a.y);\n\tp.x = rv.x*c+rv.z*s;\n\tp.y = rv.y;\n\tp.z = -rv.x*s+rv.z*c;\n\tc = cos(a.z);\n\ts = sin(a.z);\n\trv.x = p.x*c+p.y*s;\n\trv.y = -p.x*s+p.y*c;\n\trv.z = p.z;\n\treturn rv;\n}\n",
|
|
"inputs": [
|
|
{
|
|
"default": "vec2(100.0, 0.0)",
|
|
"label": "",
|
|
"longdesc": "The input object as signed distance function",
|
|
"name": "in",
|
|
"shortdesc": "Input",
|
|
"type": "sdf3dc"
|
|
}
|
|
],
|
|
"instance": "",
|
|
"longdesc": "Rotates its input 3D object described as a signed distance function.",
|
|
"name": "Rotate",
|
|
"outputs": [
|
|
{
|
|
"longdesc": "The rotated object",
|
|
"sdf3dc": "$in(rotate3d($uv, -vec3($ax, $ay, $az)*0.01745329251))",
|
|
"shortdesc": "Output",
|
|
"type": "sdf3dc"
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"control": "None",
|
|
"default": 0,
|
|
"label": "X",
|
|
"longdesc": "The rotation around the X axis",
|
|
"max": 180,
|
|
"min": -180,
|
|
"name": "ax",
|
|
"shortdesc": "Rotate.x",
|
|
"step": 1,
|
|
"type": "float"
|
|
},
|
|
{
|
|
"control": "None",
|
|
"default": 0,
|
|
"label": "Y",
|
|
"longdesc": "The rotation around the Y axis",
|
|
"max": 180,
|
|
"min": -180,
|
|
"name": "ay",
|
|
"shortdesc": "Rotate.y",
|
|
"step": 1,
|
|
"type": "float"
|
|
},
|
|
{
|
|
"control": "None",
|
|
"default": 0,
|
|
"label": "Z",
|
|
"longdesc": "The rotation around the Z axis",
|
|
"max": 180,
|
|
"min": -180,
|
|
"name": "az",
|
|
"shortdesc": "Rotate.z",
|
|
"step": 1,
|
|
"type": "float"
|
|
}
|
|
],
|
|
"shortdesc": "Rotate"
|
|
},
|
|
"type": "shader"
|
|
} |