Skip to content

Latest commit

 

History

History
101 lines (77 loc) · 1023 Bytes

File metadata and controls

101 lines (77 loc) · 1023 Bytes

float

float

Return Value

Type: float

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

float(int)

Parameter

x Type: int

Return Value

Type: float

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

float(bool)

Parameter

x Type: bool

Return Value

Type: float

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