Skip to content

Latest commit

 

History

History
181 lines (144 loc) · 2 KB

File metadata and controls

181 lines (144 loc) · 2 KB

pow

pow returns the value of x raised to the

y power, i.e. x^y. The result is undefined if x < 0 or

if x = 0 and y \leq 0.

pow(float,float)

Parameters

x Type: float y Type: float

Return Value

Type: float

JSON
{
  "Type": "pow(float,float)",
  "Name": "pow(float,float)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "float"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "float"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "float"
    }
  ]
}

pow(vec2,vec2)

Parameters

x Type: vec2 y Type: vec2

Return Value

Type: vec2

JSON
{
  "Type": "pow(vec2,vec2)",
  "Name": "pow(vec2,vec2)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "vec2"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "vec2"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "vec2"
    }
  ]
}

pow(vec3,vec3)

Parameters

x Type: vec3 y Type: vec3

Return Value

Type: vec3

JSON
{
  "Type": "pow(vec3,vec3)",
  "Name": "pow(vec3,vec3)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "vec3"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "vec3"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "vec3"
    }
  ]
}

pow(vec4,vec4)

Parameters

x Type: vec4 y Type: vec4

Return Value

Type: vec4

JSON
{
  "Type": "pow(vec4,vec4)",
  "Name": "pow(vec4,vec4)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "vec4"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "vec4"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "vec4"
    }
  ]
}