Skip to content

Latest commit

 

History

History
151 lines (119 loc) · 1.63 KB

File metadata and controls

151 lines (119 loc) · 1.63 KB

mat3

mat3

Return Value

Type: mat3

JSON
{
  "Type": "mat3",
  "Name": "mat3",
  "Value": "1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0",
  "Category": 6,
  "InputPins": [],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat3"
    }
  ]
}

mat3(mat4x3)

Parameter

mat4x3 Type: mat4x3

Return Value

Type: mat3

JSON
{
  "Type": "mat3(mat4x3)",
  "Name": "mat3(mat4x3)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "mat4x3",
      "Type": "mat4x3"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat3"
    }
  ]
}

mat3(mat4)

Parameter

mat4 Type: mat4

Return Value

Type: mat3

JSON
{
  "Type": "mat3(mat4)",
  "Name": "mat3(mat4)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "mat4",
      "Type": "mat4"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat3"
    }
  ]
}

mat3(vec3,vec3,vec3)

Parameters

[0] Type: vec3 [1] Type: vec3 [2] Type: vec3

Return Value

Type: mat3

JSON
{
  "Type": "mat3(vec3,vec3,vec3)",
  "Name": "mat3(vec3,vec3,vec3)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "[0]",
      "Type": "vec3"
    },
    {
      "Connection": null,
      "Id": "[1]",
      "Type": "vec3"
    },
    {
      "Connection": null,
      "Id": "[2]",
      "Type": "vec3"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat3"
    }
  ]
}