foxglove.Vector3

A vector in 3D space that represents a direction only

RoboticsObservabilityVisualizationData PlatformPhysical AIAutonomyFleet ManagementDeveloper ToolsMCAPROS

Properties

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

JSON Schema

foxglove-technologies-vector3.json Raw ↑
{
  "title": "foxglove.Vector3",
  "description": "A vector in 3D space that represents a direction only",
  "$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "x component"
    },
    "y": {
      "type": "number",
      "description": "y component"
    },
    "z": {
      "type": "number",
      "description": "z component"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ]
}