foxglove.Vector2

A vector in 2D space that represents a direction only

RoboticsObservabilityVisualizationData PlatformPhysical AIAutonomyFleet ManagementDeveloper ToolsMCAPROS

Properties

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

JSON Schema

foxglove-technologies-vector2.json Raw ↑
{
  "title": "foxglove.Vector2",
  "description": "A vector in 2D 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"
    }
  },
  "required": [
    "x",
    "y"
  ]
}