Skip to content

Latest commit

 

History

History
153 lines (116 loc) · 1.57 KB

File metadata and controls

153 lines (116 loc) · 1.57 KB

log

log returns the natural logarithm of x,

i.e. the value y which satisfies x = e^y. The result is

undefined if x \leq 0.

log(float)

Parameter

x Type: float

Return Value

Type: float

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

log(vec2)

Parameter

x Type: vec2

Return Value

Type: vec2

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

log(vec3)

Parameter

x Type: vec3

Return Value

Type: vec3

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

log(vec4)

Parameter

x Type: vec4

Return Value

Type: vec4

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