Vector3

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
x number
y number
z number
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-vector3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Vector3",
  "title": "Vector3",
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "format": "float"
    },
    "y": {
      "type": "number",
      "format": "float"
    },
    "z": {
      "type": "number",
      "format": "float"
    }
  }
}