Skip to content

Latest commit

 

History

History
155 lines (117 loc) · 1.63 KB

File metadata and controls

155 lines (117 loc) · 1.63 KB

asin

atan returns the angle whose trigonometric

sine is x. The range of values returned by

asin is [-{π \over 2}, {π \over 2}].

The result is undefined if | x | > 1.

asin(float)

Parameter

x Type: float

Return Value

Type: float

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

asin(vec2)

Parameter

x Type: vec2

Return Value

Type: vec2

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

asin(vec3)

Parameter

x Type: vec3

Return Value

Type: vec3

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

asin(vec4)

Parameter

x Type: vec4

Return Value

Type: vec4

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