@foxglove/schemas 1.13.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/internal/schemas.d.ts +1 -1
- package/dist/internal/schemas.d.ts.map +1 -1
- package/dist/internal/schemas.js +64 -34
- package/dist/internal/schemas.js.map +1 -1
- package/dist/jsonschema/index.d.ts +163 -21
- package/dist/jsonschema/index.d.ts.map +1 -1
- package/dist/jsonschema/index.js +339 -173
- package/dist/jsonschema/index.js.map +1 -1
- package/dist/types/LocationFix.d.ts +2 -2
- package/dist/types/LocationFix.d.ts.map +1 -1
- package/dist/types/Odometry.d.ts +26 -0
- package/dist/types/Odometry.d.ts.map +1 -0
- package/dist/types/{Velocity3.js → Odometry.js} +1 -1
- package/dist/types/Odometry.js.map +1 -0
- package/dist/types/Vector2.d.ts +2 -2
- package/dist/types/Vector2.d.ts.map +1 -1
- package/dist/types/Vector3.d.ts +3 -3
- package/dist/types/Vector3.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/Velocity3.d.ts +0 -10
- package/dist/types/Velocity3.d.ts.map +0 -1
- package/dist/types/Velocity3.js.map +0 -1
package/dist/jsonschema/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Generated by https://github.com/foxglove/foxglove-sdk
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Time = exports.
|
|
4
|
+
exports.Time = exports.Vector3 = exports.Vector2 = exports.TriangleListPrimitive = exports.Timestamp = exports.TextPrimitive = exports.TextAnnotation = exports.SpherePrimitive = exports.RawImage = exports.RawAudio = exports.Quaternion = exports.PosesInFrame = exports.PoseInFrame = exports.Pose = exports.PointsAnnotation = exports.PointCloud = exports.Point3InFrame = exports.Point3 = exports.Point2 = exports.PackedElementField = exports.Odometry = exports.ModelPrimitive = exports.SceneUpdate = exports.SceneEntity = exports.SceneEntityDeletion = exports.Log = exports.LocationFixes = exports.LocationFix = exports.LinePrimitive = exports.LaserScan = exports.KeyValuePair = exports.JointStates = exports.JointState = exports.ImageAnnotations = exports.VoxelGrid = exports.Grid = exports.GeoJSON = exports.FrameTransforms = exports.FrameTransform = exports.Duration = exports.CubePrimitive = exports.CylinderPrimitive = exports.CompressedVideo = exports.CompressedPointCloud = exports.CompressedImage = exports.Color = exports.CircleAnnotation = exports.CameraCalibration = exports.ArrowPrimitive = void 0;
|
|
5
5
|
exports.ArrowPrimitive = {
|
|
6
6
|
"title": "foxglove.ArrowPrimitive",
|
|
7
7
|
"description": "A primitive representing an arrow",
|
|
@@ -20,15 +20,15 @@ exports.ArrowPrimitive = {
|
|
|
20
20
|
"properties": {
|
|
21
21
|
"x": {
|
|
22
22
|
"type": "number",
|
|
23
|
-
"description": "x
|
|
23
|
+
"description": "x component"
|
|
24
24
|
},
|
|
25
25
|
"y": {
|
|
26
26
|
"type": "number",
|
|
27
|
-
"description": "y
|
|
27
|
+
"description": "y component"
|
|
28
28
|
},
|
|
29
29
|
"z": {
|
|
30
30
|
"type": "number",
|
|
31
|
-
"description": "z
|
|
31
|
+
"description": "z component"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"required": [
|
|
@@ -465,15 +465,15 @@ exports.CompressedPointCloud = {
|
|
|
465
465
|
"properties": {
|
|
466
466
|
"x": {
|
|
467
467
|
"type": "number",
|
|
468
|
-
"description": "x
|
|
468
|
+
"description": "x component"
|
|
469
469
|
},
|
|
470
470
|
"y": {
|
|
471
471
|
"type": "number",
|
|
472
|
-
"description": "y
|
|
472
|
+
"description": "y component"
|
|
473
473
|
},
|
|
474
474
|
"z": {
|
|
475
475
|
"type": "number",
|
|
476
|
-
"description": "z
|
|
476
|
+
"description": "z component"
|
|
477
477
|
}
|
|
478
478
|
},
|
|
479
479
|
"required": [
|
|
@@ -596,15 +596,15 @@ exports.CylinderPrimitive = {
|
|
|
596
596
|
"properties": {
|
|
597
597
|
"x": {
|
|
598
598
|
"type": "number",
|
|
599
|
-
"description": "x
|
|
599
|
+
"description": "x component"
|
|
600
600
|
},
|
|
601
601
|
"y": {
|
|
602
602
|
"type": "number",
|
|
603
|
-
"description": "y
|
|
603
|
+
"description": "y component"
|
|
604
604
|
},
|
|
605
605
|
"z": {
|
|
606
606
|
"type": "number",
|
|
607
|
-
"description": "z
|
|
607
|
+
"description": "z component"
|
|
608
608
|
}
|
|
609
609
|
},
|
|
610
610
|
"required": [
|
|
@@ -655,15 +655,15 @@ exports.CylinderPrimitive = {
|
|
|
655
655
|
"properties": {
|
|
656
656
|
"x": {
|
|
657
657
|
"type": "number",
|
|
658
|
-
"description": "x
|
|
658
|
+
"description": "x component"
|
|
659
659
|
},
|
|
660
660
|
"y": {
|
|
661
661
|
"type": "number",
|
|
662
|
-
"description": "y
|
|
662
|
+
"description": "y component"
|
|
663
663
|
},
|
|
664
664
|
"z": {
|
|
665
665
|
"type": "number",
|
|
666
|
-
"description": "z
|
|
666
|
+
"description": "z component"
|
|
667
667
|
}
|
|
668
668
|
},
|
|
669
669
|
"required": [
|
|
@@ -736,15 +736,15 @@ exports.CubePrimitive = {
|
|
|
736
736
|
"properties": {
|
|
737
737
|
"x": {
|
|
738
738
|
"type": "number",
|
|
739
|
-
"description": "x
|
|
739
|
+
"description": "x component"
|
|
740
740
|
},
|
|
741
741
|
"y": {
|
|
742
742
|
"type": "number",
|
|
743
|
-
"description": "y
|
|
743
|
+
"description": "y component"
|
|
744
744
|
},
|
|
745
745
|
"z": {
|
|
746
746
|
"type": "number",
|
|
747
|
-
"description": "z
|
|
747
|
+
"description": "z component"
|
|
748
748
|
}
|
|
749
749
|
},
|
|
750
750
|
"required": [
|
|
@@ -795,15 +795,15 @@ exports.CubePrimitive = {
|
|
|
795
795
|
"properties": {
|
|
796
796
|
"x": {
|
|
797
797
|
"type": "number",
|
|
798
|
-
"description": "x
|
|
798
|
+
"description": "x component"
|
|
799
799
|
},
|
|
800
800
|
"y": {
|
|
801
801
|
"type": "number",
|
|
802
|
-
"description": "y
|
|
802
|
+
"description": "y component"
|
|
803
803
|
},
|
|
804
804
|
"z": {
|
|
805
805
|
"type": "number",
|
|
806
|
-
"description": "z
|
|
806
|
+
"description": "z component"
|
|
807
807
|
}
|
|
808
808
|
},
|
|
809
809
|
"required": [
|
|
@@ -906,15 +906,15 @@ exports.FrameTransform = {
|
|
|
906
906
|
"properties": {
|
|
907
907
|
"x": {
|
|
908
908
|
"type": "number",
|
|
909
|
-
"description": "x
|
|
909
|
+
"description": "x component"
|
|
910
910
|
},
|
|
911
911
|
"y": {
|
|
912
912
|
"type": "number",
|
|
913
|
-
"description": "y
|
|
913
|
+
"description": "y component"
|
|
914
914
|
},
|
|
915
915
|
"z": {
|
|
916
916
|
"type": "number",
|
|
917
|
-
"description": "z
|
|
917
|
+
"description": "z component"
|
|
918
918
|
}
|
|
919
919
|
},
|
|
920
920
|
"required": [
|
|
@@ -1005,15 +1005,15 @@ exports.FrameTransforms = {
|
|
|
1005
1005
|
"properties": {
|
|
1006
1006
|
"x": {
|
|
1007
1007
|
"type": "number",
|
|
1008
|
-
"description": "x
|
|
1008
|
+
"description": "x component"
|
|
1009
1009
|
},
|
|
1010
1010
|
"y": {
|
|
1011
1011
|
"type": "number",
|
|
1012
|
-
"description": "y
|
|
1012
|
+
"description": "y component"
|
|
1013
1013
|
},
|
|
1014
1014
|
"z": {
|
|
1015
1015
|
"type": "number",
|
|
1016
|
-
"description": "z
|
|
1016
|
+
"description": "z component"
|
|
1017
1017
|
}
|
|
1018
1018
|
},
|
|
1019
1019
|
"required": [
|
|
@@ -1120,15 +1120,15 @@ exports.Grid = {
|
|
|
1120
1120
|
"properties": {
|
|
1121
1121
|
"x": {
|
|
1122
1122
|
"type": "number",
|
|
1123
|
-
"description": "x
|
|
1123
|
+
"description": "x component"
|
|
1124
1124
|
},
|
|
1125
1125
|
"y": {
|
|
1126
1126
|
"type": "number",
|
|
1127
|
-
"description": "y
|
|
1127
|
+
"description": "y component"
|
|
1128
1128
|
},
|
|
1129
1129
|
"z": {
|
|
1130
1130
|
"type": "number",
|
|
1131
|
-
"description": "z
|
|
1131
|
+
"description": "z component"
|
|
1132
1132
|
}
|
|
1133
1133
|
},
|
|
1134
1134
|
"required": [
|
|
@@ -1184,11 +1184,11 @@ exports.Grid = {
|
|
|
1184
1184
|
"properties": {
|
|
1185
1185
|
"x": {
|
|
1186
1186
|
"type": "number",
|
|
1187
|
-
"description": "x
|
|
1187
|
+
"description": "x component"
|
|
1188
1188
|
},
|
|
1189
1189
|
"y": {
|
|
1190
1190
|
"type": "number",
|
|
1191
|
-
"description": "y
|
|
1191
|
+
"description": "y component"
|
|
1192
1192
|
}
|
|
1193
1193
|
},
|
|
1194
1194
|
"required": [
|
|
@@ -1338,15 +1338,15 @@ exports.VoxelGrid = {
|
|
|
1338
1338
|
"properties": {
|
|
1339
1339
|
"x": {
|
|
1340
1340
|
"type": "number",
|
|
1341
|
-
"description": "x
|
|
1341
|
+
"description": "x component"
|
|
1342
1342
|
},
|
|
1343
1343
|
"y": {
|
|
1344
1344
|
"type": "number",
|
|
1345
|
-
"description": "y
|
|
1345
|
+
"description": "y component"
|
|
1346
1346
|
},
|
|
1347
1347
|
"z": {
|
|
1348
1348
|
"type": "number",
|
|
1349
|
-
"description": "z
|
|
1349
|
+
"description": "z component"
|
|
1350
1350
|
}
|
|
1351
1351
|
},
|
|
1352
1352
|
"required": [
|
|
@@ -1407,15 +1407,15 @@ exports.VoxelGrid = {
|
|
|
1407
1407
|
"properties": {
|
|
1408
1408
|
"x": {
|
|
1409
1409
|
"type": "number",
|
|
1410
|
-
"description": "x
|
|
1410
|
+
"description": "x component"
|
|
1411
1411
|
},
|
|
1412
1412
|
"y": {
|
|
1413
1413
|
"type": "number",
|
|
1414
|
-
"description": "y
|
|
1414
|
+
"description": "y component"
|
|
1415
1415
|
},
|
|
1416
1416
|
"z": {
|
|
1417
1417
|
"type": "number",
|
|
1418
|
-
"description": "z
|
|
1418
|
+
"description": "z component"
|
|
1419
1419
|
}
|
|
1420
1420
|
},
|
|
1421
1421
|
"required": [
|
|
@@ -2232,15 +2232,15 @@ exports.LaserScan = {
|
|
|
2232
2232
|
"properties": {
|
|
2233
2233
|
"x": {
|
|
2234
2234
|
"type": "number",
|
|
2235
|
-
"description": "x
|
|
2235
|
+
"description": "x component"
|
|
2236
2236
|
},
|
|
2237
2237
|
"y": {
|
|
2238
2238
|
"type": "number",
|
|
2239
|
-
"description": "y
|
|
2239
|
+
"description": "y component"
|
|
2240
2240
|
},
|
|
2241
2241
|
"z": {
|
|
2242
2242
|
"type": "number",
|
|
2243
|
-
"description": "z
|
|
2243
|
+
"description": "z component"
|
|
2244
2244
|
}
|
|
2245
2245
|
},
|
|
2246
2246
|
"required": [
|
|
@@ -2356,15 +2356,15 @@ exports.LinePrimitive = {
|
|
|
2356
2356
|
"properties": {
|
|
2357
2357
|
"x": {
|
|
2358
2358
|
"type": "number",
|
|
2359
|
-
"description": "x
|
|
2359
|
+
"description": "x component"
|
|
2360
2360
|
},
|
|
2361
2361
|
"y": {
|
|
2362
2362
|
"type": "number",
|
|
2363
|
-
"description": "y
|
|
2363
|
+
"description": "y component"
|
|
2364
2364
|
},
|
|
2365
2365
|
"z": {
|
|
2366
2366
|
"type": "number",
|
|
2367
|
-
"description": "z
|
|
2367
|
+
"description": "z component"
|
|
2368
2368
|
}
|
|
2369
2369
|
},
|
|
2370
2370
|
"required": [
|
|
@@ -2604,7 +2604,7 @@ exports.LocationFix = {
|
|
|
2604
2604
|
"description": "Heading (yaw angle), in radians, measured clockwise from north"
|
|
2605
2605
|
},
|
|
2606
2606
|
"velocity": {
|
|
2607
|
-
"title": "foxglove.
|
|
2607
|
+
"title": "foxglove.Vector3",
|
|
2608
2608
|
"description": "Velocity in local East-North-Up (ENU) frame in m/s",
|
|
2609
2609
|
"type": "object",
|
|
2610
2610
|
"properties": {
|
|
@@ -2775,7 +2775,7 @@ exports.LocationFixes = {
|
|
|
2775
2775
|
"description": "Heading (yaw angle), in radians, measured clockwise from north"
|
|
2776
2776
|
},
|
|
2777
2777
|
"velocity": {
|
|
2778
|
-
"title": "foxglove.
|
|
2778
|
+
"title": "foxglove.Vector3",
|
|
2779
2779
|
"description": "Velocity in local East-North-Up (ENU) frame in m/s",
|
|
2780
2780
|
"type": "object",
|
|
2781
2781
|
"properties": {
|
|
@@ -3093,15 +3093,15 @@ exports.SceneEntity = {
|
|
|
3093
3093
|
"properties": {
|
|
3094
3094
|
"x": {
|
|
3095
3095
|
"type": "number",
|
|
3096
|
-
"description": "x
|
|
3096
|
+
"description": "x component"
|
|
3097
3097
|
},
|
|
3098
3098
|
"y": {
|
|
3099
3099
|
"type": "number",
|
|
3100
|
-
"description": "y
|
|
3100
|
+
"description": "y component"
|
|
3101
3101
|
},
|
|
3102
3102
|
"z": {
|
|
3103
3103
|
"type": "number",
|
|
3104
|
-
"description": "z
|
|
3104
|
+
"description": "z component"
|
|
3105
3105
|
}
|
|
3106
3106
|
},
|
|
3107
3107
|
"required": [
|
|
@@ -3221,15 +3221,15 @@ exports.SceneEntity = {
|
|
|
3221
3221
|
"properties": {
|
|
3222
3222
|
"x": {
|
|
3223
3223
|
"type": "number",
|
|
3224
|
-
"description": "x
|
|
3224
|
+
"description": "x component"
|
|
3225
3225
|
},
|
|
3226
3226
|
"y": {
|
|
3227
3227
|
"type": "number",
|
|
3228
|
-
"description": "y
|
|
3228
|
+
"description": "y component"
|
|
3229
3229
|
},
|
|
3230
3230
|
"z": {
|
|
3231
3231
|
"type": "number",
|
|
3232
|
-
"description": "z
|
|
3232
|
+
"description": "z component"
|
|
3233
3233
|
}
|
|
3234
3234
|
},
|
|
3235
3235
|
"required": [
|
|
@@ -3280,15 +3280,15 @@ exports.SceneEntity = {
|
|
|
3280
3280
|
"properties": {
|
|
3281
3281
|
"x": {
|
|
3282
3282
|
"type": "number",
|
|
3283
|
-
"description": "x
|
|
3283
|
+
"description": "x component"
|
|
3284
3284
|
},
|
|
3285
3285
|
"y": {
|
|
3286
3286
|
"type": "number",
|
|
3287
|
-
"description": "y
|
|
3287
|
+
"description": "y component"
|
|
3288
3288
|
},
|
|
3289
3289
|
"z": {
|
|
3290
3290
|
"type": "number",
|
|
3291
|
-
"description": "z
|
|
3291
|
+
"description": "z component"
|
|
3292
3292
|
}
|
|
3293
3293
|
},
|
|
3294
3294
|
"required": [
|
|
@@ -3354,15 +3354,15 @@ exports.SceneEntity = {
|
|
|
3354
3354
|
"properties": {
|
|
3355
3355
|
"x": {
|
|
3356
3356
|
"type": "number",
|
|
3357
|
-
"description": "x
|
|
3357
|
+
"description": "x component"
|
|
3358
3358
|
},
|
|
3359
3359
|
"y": {
|
|
3360
3360
|
"type": "number",
|
|
3361
|
-
"description": "y
|
|
3361
|
+
"description": "y component"
|
|
3362
3362
|
},
|
|
3363
3363
|
"z": {
|
|
3364
3364
|
"type": "number",
|
|
3365
|
-
"description": "z
|
|
3365
|
+
"description": "z component"
|
|
3366
3366
|
}
|
|
3367
3367
|
},
|
|
3368
3368
|
"required": [
|
|
@@ -3413,15 +3413,15 @@ exports.SceneEntity = {
|
|
|
3413
3413
|
"properties": {
|
|
3414
3414
|
"x": {
|
|
3415
3415
|
"type": "number",
|
|
3416
|
-
"description": "x
|
|
3416
|
+
"description": "x component"
|
|
3417
3417
|
},
|
|
3418
3418
|
"y": {
|
|
3419
3419
|
"type": "number",
|
|
3420
|
-
"description": "y
|
|
3420
|
+
"description": "y component"
|
|
3421
3421
|
},
|
|
3422
3422
|
"z": {
|
|
3423
3423
|
"type": "number",
|
|
3424
|
-
"description": "z
|
|
3424
|
+
"description": "z component"
|
|
3425
3425
|
}
|
|
3426
3426
|
},
|
|
3427
3427
|
"required": [
|
|
@@ -3487,15 +3487,15 @@ exports.SceneEntity = {
|
|
|
3487
3487
|
"properties": {
|
|
3488
3488
|
"x": {
|
|
3489
3489
|
"type": "number",
|
|
3490
|
-
"description": "x
|
|
3490
|
+
"description": "x component"
|
|
3491
3491
|
},
|
|
3492
3492
|
"y": {
|
|
3493
3493
|
"type": "number",
|
|
3494
|
-
"description": "y
|
|
3494
|
+
"description": "y component"
|
|
3495
3495
|
},
|
|
3496
3496
|
"z": {
|
|
3497
3497
|
"type": "number",
|
|
3498
|
-
"description": "z
|
|
3498
|
+
"description": "z component"
|
|
3499
3499
|
}
|
|
3500
3500
|
},
|
|
3501
3501
|
"required": [
|
|
@@ -3546,15 +3546,15 @@ exports.SceneEntity = {
|
|
|
3546
3546
|
"properties": {
|
|
3547
3547
|
"x": {
|
|
3548
3548
|
"type": "number",
|
|
3549
|
-
"description": "x
|
|
3549
|
+
"description": "x component"
|
|
3550
3550
|
},
|
|
3551
3551
|
"y": {
|
|
3552
3552
|
"type": "number",
|
|
3553
|
-
"description": "y
|
|
3553
|
+
"description": "y component"
|
|
3554
3554
|
},
|
|
3555
3555
|
"z": {
|
|
3556
3556
|
"type": "number",
|
|
3557
|
-
"description": "z
|
|
3557
|
+
"description": "z component"
|
|
3558
3558
|
}
|
|
3559
3559
|
},
|
|
3560
3560
|
"required": [
|
|
@@ -3651,15 +3651,15 @@ exports.SceneEntity = {
|
|
|
3651
3651
|
"properties": {
|
|
3652
3652
|
"x": {
|
|
3653
3653
|
"type": "number",
|
|
3654
|
-
"description": "x
|
|
3654
|
+
"description": "x component"
|
|
3655
3655
|
},
|
|
3656
3656
|
"y": {
|
|
3657
3657
|
"type": "number",
|
|
3658
|
-
"description": "y
|
|
3658
|
+
"description": "y component"
|
|
3659
3659
|
},
|
|
3660
3660
|
"z": {
|
|
3661
3661
|
"type": "number",
|
|
3662
|
-
"description": "z
|
|
3662
|
+
"description": "z component"
|
|
3663
3663
|
}
|
|
3664
3664
|
},
|
|
3665
3665
|
"required": [
|
|
@@ -3842,15 +3842,15 @@ exports.SceneEntity = {
|
|
|
3842
3842
|
"properties": {
|
|
3843
3843
|
"x": {
|
|
3844
3844
|
"type": "number",
|
|
3845
|
-
"description": "x
|
|
3845
|
+
"description": "x component"
|
|
3846
3846
|
},
|
|
3847
3847
|
"y": {
|
|
3848
3848
|
"type": "number",
|
|
3849
|
-
"description": "y
|
|
3849
|
+
"description": "y component"
|
|
3850
3850
|
},
|
|
3851
3851
|
"z": {
|
|
3852
3852
|
"type": "number",
|
|
3853
|
-
"description": "z
|
|
3853
|
+
"description": "z component"
|
|
3854
3854
|
}
|
|
3855
3855
|
},
|
|
3856
3856
|
"required": [
|
|
@@ -4022,15 +4022,15 @@ exports.SceneEntity = {
|
|
|
4022
4022
|
"properties": {
|
|
4023
4023
|
"x": {
|
|
4024
4024
|
"type": "number",
|
|
4025
|
-
"description": "x
|
|
4025
|
+
"description": "x component"
|
|
4026
4026
|
},
|
|
4027
4027
|
"y": {
|
|
4028
4028
|
"type": "number",
|
|
4029
|
-
"description": "y
|
|
4029
|
+
"description": "y component"
|
|
4030
4030
|
},
|
|
4031
4031
|
"z": {
|
|
4032
4032
|
"type": "number",
|
|
4033
|
-
"description": "z
|
|
4033
|
+
"description": "z component"
|
|
4034
4034
|
}
|
|
4035
4035
|
},
|
|
4036
4036
|
"required": [
|
|
@@ -4150,15 +4150,15 @@ exports.SceneEntity = {
|
|
|
4150
4150
|
"properties": {
|
|
4151
4151
|
"x": {
|
|
4152
4152
|
"type": "number",
|
|
4153
|
-
"description": "x
|
|
4153
|
+
"description": "x component"
|
|
4154
4154
|
},
|
|
4155
4155
|
"y": {
|
|
4156
4156
|
"type": "number",
|
|
4157
|
-
"description": "y
|
|
4157
|
+
"description": "y component"
|
|
4158
4158
|
},
|
|
4159
4159
|
"z": {
|
|
4160
4160
|
"type": "number",
|
|
4161
|
-
"description": "z
|
|
4161
|
+
"description": "z component"
|
|
4162
4162
|
}
|
|
4163
4163
|
},
|
|
4164
4164
|
"required": [
|
|
@@ -4209,15 +4209,15 @@ exports.SceneEntity = {
|
|
|
4209
4209
|
"properties": {
|
|
4210
4210
|
"x": {
|
|
4211
4211
|
"type": "number",
|
|
4212
|
-
"description": "x
|
|
4212
|
+
"description": "x component"
|
|
4213
4213
|
},
|
|
4214
4214
|
"y": {
|
|
4215
4215
|
"type": "number",
|
|
4216
|
-
"description": "y
|
|
4216
|
+
"description": "y component"
|
|
4217
4217
|
},
|
|
4218
4218
|
"z": {
|
|
4219
4219
|
"type": "number",
|
|
4220
|
-
"description": "z
|
|
4220
|
+
"description": "z component"
|
|
4221
4221
|
}
|
|
4222
4222
|
},
|
|
4223
4223
|
"required": [
|
|
@@ -4453,15 +4453,15 @@ exports.SceneUpdate = {
|
|
|
4453
4453
|
"properties": {
|
|
4454
4454
|
"x": {
|
|
4455
4455
|
"type": "number",
|
|
4456
|
-
"description": "x
|
|
4456
|
+
"description": "x component"
|
|
4457
4457
|
},
|
|
4458
4458
|
"y": {
|
|
4459
4459
|
"type": "number",
|
|
4460
|
-
"description": "y
|
|
4460
|
+
"description": "y component"
|
|
4461
4461
|
},
|
|
4462
4462
|
"z": {
|
|
4463
4463
|
"type": "number",
|
|
4464
|
-
"description": "z
|
|
4464
|
+
"description": "z component"
|
|
4465
4465
|
}
|
|
4466
4466
|
},
|
|
4467
4467
|
"required": [
|
|
@@ -4581,15 +4581,15 @@ exports.SceneUpdate = {
|
|
|
4581
4581
|
"properties": {
|
|
4582
4582
|
"x": {
|
|
4583
4583
|
"type": "number",
|
|
4584
|
-
"description": "x
|
|
4584
|
+
"description": "x component"
|
|
4585
4585
|
},
|
|
4586
4586
|
"y": {
|
|
4587
4587
|
"type": "number",
|
|
4588
|
-
"description": "y
|
|
4588
|
+
"description": "y component"
|
|
4589
4589
|
},
|
|
4590
4590
|
"z": {
|
|
4591
4591
|
"type": "number",
|
|
4592
|
-
"description": "z
|
|
4592
|
+
"description": "z component"
|
|
4593
4593
|
}
|
|
4594
4594
|
},
|
|
4595
4595
|
"required": [
|
|
@@ -4640,15 +4640,15 @@ exports.SceneUpdate = {
|
|
|
4640
4640
|
"properties": {
|
|
4641
4641
|
"x": {
|
|
4642
4642
|
"type": "number",
|
|
4643
|
-
"description": "x
|
|
4643
|
+
"description": "x component"
|
|
4644
4644
|
},
|
|
4645
4645
|
"y": {
|
|
4646
4646
|
"type": "number",
|
|
4647
|
-
"description": "y
|
|
4647
|
+
"description": "y component"
|
|
4648
4648
|
},
|
|
4649
4649
|
"z": {
|
|
4650
4650
|
"type": "number",
|
|
4651
|
-
"description": "z
|
|
4651
|
+
"description": "z component"
|
|
4652
4652
|
}
|
|
4653
4653
|
},
|
|
4654
4654
|
"required": [
|
|
@@ -4714,15 +4714,15 @@ exports.SceneUpdate = {
|
|
|
4714
4714
|
"properties": {
|
|
4715
4715
|
"x": {
|
|
4716
4716
|
"type": "number",
|
|
4717
|
-
"description": "x
|
|
4717
|
+
"description": "x component"
|
|
4718
4718
|
},
|
|
4719
4719
|
"y": {
|
|
4720
4720
|
"type": "number",
|
|
4721
|
-
"description": "y
|
|
4721
|
+
"description": "y component"
|
|
4722
4722
|
},
|
|
4723
4723
|
"z": {
|
|
4724
4724
|
"type": "number",
|
|
4725
|
-
"description": "z
|
|
4725
|
+
"description": "z component"
|
|
4726
4726
|
}
|
|
4727
4727
|
},
|
|
4728
4728
|
"required": [
|
|
@@ -4773,15 +4773,15 @@ exports.SceneUpdate = {
|
|
|
4773
4773
|
"properties": {
|
|
4774
4774
|
"x": {
|
|
4775
4775
|
"type": "number",
|
|
4776
|
-
"description": "x
|
|
4776
|
+
"description": "x component"
|
|
4777
4777
|
},
|
|
4778
4778
|
"y": {
|
|
4779
4779
|
"type": "number",
|
|
4780
|
-
"description": "y
|
|
4780
|
+
"description": "y component"
|
|
4781
4781
|
},
|
|
4782
4782
|
"z": {
|
|
4783
4783
|
"type": "number",
|
|
4784
|
-
"description": "z
|
|
4784
|
+
"description": "z component"
|
|
4785
4785
|
}
|
|
4786
4786
|
},
|
|
4787
4787
|
"required": [
|
|
@@ -4847,15 +4847,15 @@ exports.SceneUpdate = {
|
|
|
4847
4847
|
"properties": {
|
|
4848
4848
|
"x": {
|
|
4849
4849
|
"type": "number",
|
|
4850
|
-
"description": "x
|
|
4850
|
+
"description": "x component"
|
|
4851
4851
|
},
|
|
4852
4852
|
"y": {
|
|
4853
4853
|
"type": "number",
|
|
4854
|
-
"description": "y
|
|
4854
|
+
"description": "y component"
|
|
4855
4855
|
},
|
|
4856
4856
|
"z": {
|
|
4857
4857
|
"type": "number",
|
|
4858
|
-
"description": "z
|
|
4858
|
+
"description": "z component"
|
|
4859
4859
|
}
|
|
4860
4860
|
},
|
|
4861
4861
|
"required": [
|
|
@@ -4906,15 +4906,15 @@ exports.SceneUpdate = {
|
|
|
4906
4906
|
"properties": {
|
|
4907
4907
|
"x": {
|
|
4908
4908
|
"type": "number",
|
|
4909
|
-
"description": "x
|
|
4909
|
+
"description": "x component"
|
|
4910
4910
|
},
|
|
4911
4911
|
"y": {
|
|
4912
4912
|
"type": "number",
|
|
4913
|
-
"description": "y
|
|
4913
|
+
"description": "y component"
|
|
4914
4914
|
},
|
|
4915
4915
|
"z": {
|
|
4916
4916
|
"type": "number",
|
|
4917
|
-
"description": "z
|
|
4917
|
+
"description": "z component"
|
|
4918
4918
|
}
|
|
4919
4919
|
},
|
|
4920
4920
|
"required": [
|
|
@@ -5011,15 +5011,15 @@ exports.SceneUpdate = {
|
|
|
5011
5011
|
"properties": {
|
|
5012
5012
|
"x": {
|
|
5013
5013
|
"type": "number",
|
|
5014
|
-
"description": "x
|
|
5014
|
+
"description": "x component"
|
|
5015
5015
|
},
|
|
5016
5016
|
"y": {
|
|
5017
5017
|
"type": "number",
|
|
5018
|
-
"description": "y
|
|
5018
|
+
"description": "y component"
|
|
5019
5019
|
},
|
|
5020
5020
|
"z": {
|
|
5021
5021
|
"type": "number",
|
|
5022
|
-
"description": "z
|
|
5022
|
+
"description": "z component"
|
|
5023
5023
|
}
|
|
5024
5024
|
},
|
|
5025
5025
|
"required": [
|
|
@@ -5202,15 +5202,15 @@ exports.SceneUpdate = {
|
|
|
5202
5202
|
"properties": {
|
|
5203
5203
|
"x": {
|
|
5204
5204
|
"type": "number",
|
|
5205
|
-
"description": "x
|
|
5205
|
+
"description": "x component"
|
|
5206
5206
|
},
|
|
5207
5207
|
"y": {
|
|
5208
5208
|
"type": "number",
|
|
5209
|
-
"description": "y
|
|
5209
|
+
"description": "y component"
|
|
5210
5210
|
},
|
|
5211
5211
|
"z": {
|
|
5212
5212
|
"type": "number",
|
|
5213
|
-
"description": "z
|
|
5213
|
+
"description": "z component"
|
|
5214
5214
|
}
|
|
5215
5215
|
},
|
|
5216
5216
|
"required": [
|
|
@@ -5382,15 +5382,15 @@ exports.SceneUpdate = {
|
|
|
5382
5382
|
"properties": {
|
|
5383
5383
|
"x": {
|
|
5384
5384
|
"type": "number",
|
|
5385
|
-
"description": "x
|
|
5385
|
+
"description": "x component"
|
|
5386
5386
|
},
|
|
5387
5387
|
"y": {
|
|
5388
5388
|
"type": "number",
|
|
5389
|
-
"description": "y
|
|
5389
|
+
"description": "y component"
|
|
5390
5390
|
},
|
|
5391
5391
|
"z": {
|
|
5392
5392
|
"type": "number",
|
|
5393
|
-
"description": "z
|
|
5393
|
+
"description": "z component"
|
|
5394
5394
|
}
|
|
5395
5395
|
},
|
|
5396
5396
|
"required": [
|
|
@@ -5510,15 +5510,15 @@ exports.SceneUpdate = {
|
|
|
5510
5510
|
"properties": {
|
|
5511
5511
|
"x": {
|
|
5512
5512
|
"type": "number",
|
|
5513
|
-
"description": "x
|
|
5513
|
+
"description": "x component"
|
|
5514
5514
|
},
|
|
5515
5515
|
"y": {
|
|
5516
5516
|
"type": "number",
|
|
5517
|
-
"description": "y
|
|
5517
|
+
"description": "y component"
|
|
5518
5518
|
},
|
|
5519
5519
|
"z": {
|
|
5520
5520
|
"type": "number",
|
|
5521
|
-
"description": "z
|
|
5521
|
+
"description": "z component"
|
|
5522
5522
|
}
|
|
5523
5523
|
},
|
|
5524
5524
|
"required": [
|
|
@@ -5569,15 +5569,15 @@ exports.SceneUpdate = {
|
|
|
5569
5569
|
"properties": {
|
|
5570
5570
|
"x": {
|
|
5571
5571
|
"type": "number",
|
|
5572
|
-
"description": "x
|
|
5572
|
+
"description": "x component"
|
|
5573
5573
|
},
|
|
5574
5574
|
"y": {
|
|
5575
5575
|
"type": "number",
|
|
5576
|
-
"description": "y
|
|
5576
|
+
"description": "y component"
|
|
5577
5577
|
},
|
|
5578
5578
|
"z": {
|
|
5579
5579
|
"type": "number",
|
|
5580
|
-
"description": "z
|
|
5580
|
+
"description": "z component"
|
|
5581
5581
|
}
|
|
5582
5582
|
},
|
|
5583
5583
|
"required": [
|
|
@@ -5689,15 +5689,15 @@ exports.ModelPrimitive = {
|
|
|
5689
5689
|
"properties": {
|
|
5690
5690
|
"x": {
|
|
5691
5691
|
"type": "number",
|
|
5692
|
-
"description": "x
|
|
5692
|
+
"description": "x component"
|
|
5693
5693
|
},
|
|
5694
5694
|
"y": {
|
|
5695
5695
|
"type": "number",
|
|
5696
|
-
"description": "y
|
|
5696
|
+
"description": "y component"
|
|
5697
5697
|
},
|
|
5698
5698
|
"z": {
|
|
5699
5699
|
"type": "number",
|
|
5700
|
-
"description": "z
|
|
5700
|
+
"description": "z component"
|
|
5701
5701
|
}
|
|
5702
5702
|
},
|
|
5703
5703
|
"required": [
|
|
@@ -5748,15 +5748,15 @@ exports.ModelPrimitive = {
|
|
|
5748
5748
|
"properties": {
|
|
5749
5749
|
"x": {
|
|
5750
5750
|
"type": "number",
|
|
5751
|
-
"description": "x
|
|
5751
|
+
"description": "x component"
|
|
5752
5752
|
},
|
|
5753
5753
|
"y": {
|
|
5754
5754
|
"type": "number",
|
|
5755
|
-
"description": "y
|
|
5755
|
+
"description": "y component"
|
|
5756
5756
|
},
|
|
5757
5757
|
"z": {
|
|
5758
5758
|
"type": "number",
|
|
5759
|
-
"description": "z
|
|
5759
|
+
"description": "z component"
|
|
5760
5760
|
}
|
|
5761
5761
|
},
|
|
5762
5762
|
"required": [
|
|
@@ -5822,6 +5822,197 @@ exports.ModelPrimitive = {
|
|
|
5822
5822
|
"data"
|
|
5823
5823
|
]
|
|
5824
5824
|
};
|
|
5825
|
+
exports.Odometry = {
|
|
5826
|
+
"title": "foxglove.Odometry",
|
|
5827
|
+
"description": "An estimate of position, orientation, and velocity for an object or reference frame in 3D space",
|
|
5828
|
+
"$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
|
|
5829
|
+
"type": "object",
|
|
5830
|
+
"properties": {
|
|
5831
|
+
"timestamp": {
|
|
5832
|
+
"type": "object",
|
|
5833
|
+
"title": "time",
|
|
5834
|
+
"properties": {
|
|
5835
|
+
"sec": {
|
|
5836
|
+
"type": "integer",
|
|
5837
|
+
"minimum": 0
|
|
5838
|
+
},
|
|
5839
|
+
"nsec": {
|
|
5840
|
+
"type": "integer",
|
|
5841
|
+
"minimum": 0,
|
|
5842
|
+
"maximum": 999999999
|
|
5843
|
+
}
|
|
5844
|
+
},
|
|
5845
|
+
"description": "Timestamp of the message"
|
|
5846
|
+
},
|
|
5847
|
+
"frame_id": {
|
|
5848
|
+
"type": "string",
|
|
5849
|
+
"description": "Reference coordinate frame (e.g. `map` or `odom`)"
|
|
5850
|
+
},
|
|
5851
|
+
"body_frame_id": {
|
|
5852
|
+
"type": "string",
|
|
5853
|
+
"description": "Coordinate frame of the body whose motion is being estimated (e.g. `base_link`)"
|
|
5854
|
+
},
|
|
5855
|
+
"pose": {
|
|
5856
|
+
"title": "foxglove.Pose",
|
|
5857
|
+
"description": "Position and orientation of body_frame_id in frame_id",
|
|
5858
|
+
"type": "object",
|
|
5859
|
+
"properties": {
|
|
5860
|
+
"position": {
|
|
5861
|
+
"title": "foxglove.Vector3",
|
|
5862
|
+
"description": "Point denoting position in 3D space",
|
|
5863
|
+
"type": "object",
|
|
5864
|
+
"properties": {
|
|
5865
|
+
"x": {
|
|
5866
|
+
"type": "number",
|
|
5867
|
+
"description": "x component"
|
|
5868
|
+
},
|
|
5869
|
+
"y": {
|
|
5870
|
+
"type": "number",
|
|
5871
|
+
"description": "y component"
|
|
5872
|
+
},
|
|
5873
|
+
"z": {
|
|
5874
|
+
"type": "number",
|
|
5875
|
+
"description": "z component"
|
|
5876
|
+
}
|
|
5877
|
+
},
|
|
5878
|
+
"required": [
|
|
5879
|
+
"x",
|
|
5880
|
+
"y",
|
|
5881
|
+
"z"
|
|
5882
|
+
]
|
|
5883
|
+
},
|
|
5884
|
+
"orientation": {
|
|
5885
|
+
"title": "foxglove.Quaternion",
|
|
5886
|
+
"description": "Quaternion denoting orientation in 3D space",
|
|
5887
|
+
"type": "object",
|
|
5888
|
+
"properties": {
|
|
5889
|
+
"x": {
|
|
5890
|
+
"type": "number",
|
|
5891
|
+
"description": "x value"
|
|
5892
|
+
},
|
|
5893
|
+
"y": {
|
|
5894
|
+
"type": "number",
|
|
5895
|
+
"description": "y value"
|
|
5896
|
+
},
|
|
5897
|
+
"z": {
|
|
5898
|
+
"type": "number",
|
|
5899
|
+
"description": "z value"
|
|
5900
|
+
},
|
|
5901
|
+
"w": {
|
|
5902
|
+
"type": "number",
|
|
5903
|
+
"description": "w value"
|
|
5904
|
+
}
|
|
5905
|
+
},
|
|
5906
|
+
"required": [
|
|
5907
|
+
"x",
|
|
5908
|
+
"y",
|
|
5909
|
+
"z",
|
|
5910
|
+
"w"
|
|
5911
|
+
]
|
|
5912
|
+
}
|
|
5913
|
+
},
|
|
5914
|
+
"required": [
|
|
5915
|
+
"position",
|
|
5916
|
+
"orientation"
|
|
5917
|
+
]
|
|
5918
|
+
},
|
|
5919
|
+
"linear_velocity": {
|
|
5920
|
+
"title": "foxglove.Vector3",
|
|
5921
|
+
"description": "Linear velocity in m/s in body_frame_id",
|
|
5922
|
+
"type": "object",
|
|
5923
|
+
"properties": {
|
|
5924
|
+
"x": {
|
|
5925
|
+
"type": "number",
|
|
5926
|
+
"description": "x component"
|
|
5927
|
+
},
|
|
5928
|
+
"y": {
|
|
5929
|
+
"type": "number",
|
|
5930
|
+
"description": "y component"
|
|
5931
|
+
},
|
|
5932
|
+
"z": {
|
|
5933
|
+
"type": "number",
|
|
5934
|
+
"description": "z component"
|
|
5935
|
+
}
|
|
5936
|
+
},
|
|
5937
|
+
"required": [
|
|
5938
|
+
"x",
|
|
5939
|
+
"y",
|
|
5940
|
+
"z"
|
|
5941
|
+
]
|
|
5942
|
+
},
|
|
5943
|
+
"angular_velocity": {
|
|
5944
|
+
"title": "foxglove.Vector3",
|
|
5945
|
+
"description": "Angular velocity in rad/s in body_frame_id",
|
|
5946
|
+
"type": "object",
|
|
5947
|
+
"properties": {
|
|
5948
|
+
"x": {
|
|
5949
|
+
"type": "number",
|
|
5950
|
+
"description": "x component"
|
|
5951
|
+
},
|
|
5952
|
+
"y": {
|
|
5953
|
+
"type": "number",
|
|
5954
|
+
"description": "y component"
|
|
5955
|
+
},
|
|
5956
|
+
"z": {
|
|
5957
|
+
"type": "number",
|
|
5958
|
+
"description": "z component"
|
|
5959
|
+
}
|
|
5960
|
+
},
|
|
5961
|
+
"required": [
|
|
5962
|
+
"x",
|
|
5963
|
+
"y",
|
|
5964
|
+
"z"
|
|
5965
|
+
]
|
|
5966
|
+
},
|
|
5967
|
+
"pose_covariance": {
|
|
5968
|
+
"type": "array",
|
|
5969
|
+
"items": {
|
|
5970
|
+
"type": "number"
|
|
5971
|
+
},
|
|
5972
|
+
"minItems": 36,
|
|
5973
|
+
"maxItems": 36,
|
|
5974
|
+
"description": "Row-major 6x6 covariance matrix (x, y, z, rotation about x, rotation about y, rotation about z). Set to zero if unknown."
|
|
5975
|
+
},
|
|
5976
|
+
"velocity_covariance": {
|
|
5977
|
+
"type": "array",
|
|
5978
|
+
"items": {
|
|
5979
|
+
"type": "number"
|
|
5980
|
+
},
|
|
5981
|
+
"minItems": 36,
|
|
5982
|
+
"maxItems": 36,
|
|
5983
|
+
"description": "Row-major 6x6 covariance matrix (vx, vy, vz, angular rate about x, angular rate about y, angular rate about z). Set to zero if unknown."
|
|
5984
|
+
},
|
|
5985
|
+
"metadata": {
|
|
5986
|
+
"type": "array",
|
|
5987
|
+
"items": {
|
|
5988
|
+
"title": "foxglove.KeyValuePair",
|
|
5989
|
+
"description": "A key with its associated value",
|
|
5990
|
+
"type": "object",
|
|
5991
|
+
"properties": {
|
|
5992
|
+
"key": {
|
|
5993
|
+
"type": "string",
|
|
5994
|
+
"description": "Key"
|
|
5995
|
+
},
|
|
5996
|
+
"value": {
|
|
5997
|
+
"type": "string",
|
|
5998
|
+
"description": "Value"
|
|
5999
|
+
}
|
|
6000
|
+
},
|
|
6001
|
+
"required": [
|
|
6002
|
+
"key",
|
|
6003
|
+
"value"
|
|
6004
|
+
]
|
|
6005
|
+
},
|
|
6006
|
+
"description": "Additional user-provided metadata associated with the odometry message. Keys must be unique."
|
|
6007
|
+
}
|
|
6008
|
+
},
|
|
6009
|
+
"required": [
|
|
6010
|
+
"timestamp",
|
|
6011
|
+
"frame_id",
|
|
6012
|
+
"body_frame_id",
|
|
6013
|
+
"pose"
|
|
6014
|
+
]
|
|
6015
|
+
};
|
|
5825
6016
|
exports.PackedElementField = {
|
|
5826
6017
|
"title": "foxglove.PackedElementField",
|
|
5827
6018
|
"description": "A field present within each element in a byte array of packed elements.",
|
|
@@ -6035,15 +6226,15 @@ exports.PointCloud = {
|
|
|
6035
6226
|
"properties": {
|
|
6036
6227
|
"x": {
|
|
6037
6228
|
"type": "number",
|
|
6038
|
-
"description": "x
|
|
6229
|
+
"description": "x component"
|
|
6039
6230
|
},
|
|
6040
6231
|
"y": {
|
|
6041
6232
|
"type": "number",
|
|
6042
|
-
"description": "y
|
|
6233
|
+
"description": "y component"
|
|
6043
6234
|
},
|
|
6044
6235
|
"z": {
|
|
6045
6236
|
"type": "number",
|
|
6046
|
-
"description": "z
|
|
6237
|
+
"description": "z component"
|
|
6047
6238
|
}
|
|
6048
6239
|
},
|
|
6049
6240
|
"required": [
|
|
@@ -6401,15 +6592,15 @@ exports.Pose = {
|
|
|
6401
6592
|
"properties": {
|
|
6402
6593
|
"x": {
|
|
6403
6594
|
"type": "number",
|
|
6404
|
-
"description": "x
|
|
6595
|
+
"description": "x component"
|
|
6405
6596
|
},
|
|
6406
6597
|
"y": {
|
|
6407
6598
|
"type": "number",
|
|
6408
|
-
"description": "y
|
|
6599
|
+
"description": "y component"
|
|
6409
6600
|
},
|
|
6410
6601
|
"z": {
|
|
6411
6602
|
"type": "number",
|
|
6412
|
-
"description": "z
|
|
6603
|
+
"description": "z component"
|
|
6413
6604
|
}
|
|
6414
6605
|
},
|
|
6415
6606
|
"required": [
|
|
@@ -6491,15 +6682,15 @@ exports.PoseInFrame = {
|
|
|
6491
6682
|
"properties": {
|
|
6492
6683
|
"x": {
|
|
6493
6684
|
"type": "number",
|
|
6494
|
-
"description": "x
|
|
6685
|
+
"description": "x component"
|
|
6495
6686
|
},
|
|
6496
6687
|
"y": {
|
|
6497
6688
|
"type": "number",
|
|
6498
|
-
"description": "y
|
|
6689
|
+
"description": "y component"
|
|
6499
6690
|
},
|
|
6500
6691
|
"z": {
|
|
6501
6692
|
"type": "number",
|
|
6502
|
-
"description": "z
|
|
6693
|
+
"description": "z component"
|
|
6503
6694
|
}
|
|
6504
6695
|
},
|
|
6505
6696
|
"required": [
|
|
@@ -6590,15 +6781,15 @@ exports.PosesInFrame = {
|
|
|
6590
6781
|
"properties": {
|
|
6591
6782
|
"x": {
|
|
6592
6783
|
"type": "number",
|
|
6593
|
-
"description": "x
|
|
6784
|
+
"description": "x component"
|
|
6594
6785
|
},
|
|
6595
6786
|
"y": {
|
|
6596
6787
|
"type": "number",
|
|
6597
|
-
"description": "y
|
|
6788
|
+
"description": "y component"
|
|
6598
6789
|
},
|
|
6599
6790
|
"z": {
|
|
6600
6791
|
"type": "number",
|
|
6601
|
-
"description": "z
|
|
6792
|
+
"description": "z component"
|
|
6602
6793
|
}
|
|
6603
6794
|
},
|
|
6604
6795
|
"required": [
|
|
@@ -6810,15 +7001,15 @@ exports.SpherePrimitive = {
|
|
|
6810
7001
|
"properties": {
|
|
6811
7002
|
"x": {
|
|
6812
7003
|
"type": "number",
|
|
6813
|
-
"description": "x
|
|
7004
|
+
"description": "x component"
|
|
6814
7005
|
},
|
|
6815
7006
|
"y": {
|
|
6816
7007
|
"type": "number",
|
|
6817
|
-
"description": "y
|
|
7008
|
+
"description": "y component"
|
|
6818
7009
|
},
|
|
6819
7010
|
"z": {
|
|
6820
7011
|
"type": "number",
|
|
6821
|
-
"description": "z
|
|
7012
|
+
"description": "z component"
|
|
6822
7013
|
}
|
|
6823
7014
|
},
|
|
6824
7015
|
"required": [
|
|
@@ -6869,15 +7060,15 @@ exports.SpherePrimitive = {
|
|
|
6869
7060
|
"properties": {
|
|
6870
7061
|
"x": {
|
|
6871
7062
|
"type": "number",
|
|
6872
|
-
"description": "x
|
|
7063
|
+
"description": "x component"
|
|
6873
7064
|
},
|
|
6874
7065
|
"y": {
|
|
6875
7066
|
"type": "number",
|
|
6876
|
-
"description": "y
|
|
7067
|
+
"description": "y component"
|
|
6877
7068
|
},
|
|
6878
7069
|
"z": {
|
|
6879
7070
|
"type": "number",
|
|
6880
|
-
"description": "z
|
|
7071
|
+
"description": "z component"
|
|
6881
7072
|
}
|
|
6882
7073
|
},
|
|
6883
7074
|
"required": [
|
|
@@ -7080,15 +7271,15 @@ exports.TextPrimitive = {
|
|
|
7080
7271
|
"properties": {
|
|
7081
7272
|
"x": {
|
|
7082
7273
|
"type": "number",
|
|
7083
|
-
"description": "x
|
|
7274
|
+
"description": "x component"
|
|
7084
7275
|
},
|
|
7085
7276
|
"y": {
|
|
7086
7277
|
"type": "number",
|
|
7087
|
-
"description": "y
|
|
7278
|
+
"description": "y component"
|
|
7088
7279
|
},
|
|
7089
7280
|
"z": {
|
|
7090
7281
|
"type": "number",
|
|
7091
|
-
"description": "z
|
|
7282
|
+
"description": "z component"
|
|
7092
7283
|
}
|
|
7093
7284
|
},
|
|
7094
7285
|
"required": [
|
|
@@ -7227,15 +7418,15 @@ exports.TriangleListPrimitive = {
|
|
|
7227
7418
|
"properties": {
|
|
7228
7419
|
"x": {
|
|
7229
7420
|
"type": "number",
|
|
7230
|
-
"description": "x
|
|
7421
|
+
"description": "x component"
|
|
7231
7422
|
},
|
|
7232
7423
|
"y": {
|
|
7233
7424
|
"type": "number",
|
|
7234
|
-
"description": "y
|
|
7425
|
+
"description": "y component"
|
|
7235
7426
|
},
|
|
7236
7427
|
"z": {
|
|
7237
7428
|
"type": "number",
|
|
7238
|
-
"description": "z
|
|
7429
|
+
"description": "z component"
|
|
7239
7430
|
}
|
|
7240
7431
|
},
|
|
7241
7432
|
"required": [
|
|
@@ -7394,11 +7585,11 @@ exports.Vector2 = {
|
|
|
7394
7585
|
"properties": {
|
|
7395
7586
|
"x": {
|
|
7396
7587
|
"type": "number",
|
|
7397
|
-
"description": "x
|
|
7588
|
+
"description": "x component"
|
|
7398
7589
|
},
|
|
7399
7590
|
"y": {
|
|
7400
7591
|
"type": "number",
|
|
7401
|
-
"description": "y
|
|
7592
|
+
"description": "y component"
|
|
7402
7593
|
}
|
|
7403
7594
|
},
|
|
7404
7595
|
"required": [
|
|
@@ -7411,31 +7602,6 @@ exports.Vector3 = {
|
|
|
7411
7602
|
"description": "A vector in 3D space that represents a direction only",
|
|
7412
7603
|
"$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
|
|
7413
7604
|
"type": "object",
|
|
7414
|
-
"properties": {
|
|
7415
|
-
"x": {
|
|
7416
|
-
"type": "number",
|
|
7417
|
-
"description": "x coordinate length"
|
|
7418
|
-
},
|
|
7419
|
-
"y": {
|
|
7420
|
-
"type": "number",
|
|
7421
|
-
"description": "y coordinate length"
|
|
7422
|
-
},
|
|
7423
|
-
"z": {
|
|
7424
|
-
"type": "number",
|
|
7425
|
-
"description": "z coordinate length"
|
|
7426
|
-
}
|
|
7427
|
-
},
|
|
7428
|
-
"required": [
|
|
7429
|
-
"x",
|
|
7430
|
-
"y",
|
|
7431
|
-
"z"
|
|
7432
|
-
]
|
|
7433
|
-
};
|
|
7434
|
-
exports.Velocity3 = {
|
|
7435
|
-
"title": "foxglove.Velocity3",
|
|
7436
|
-
"description": "A velocity vector in 3D space",
|
|
7437
|
-
"$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
|
|
7438
|
-
"type": "object",
|
|
7439
7605
|
"properties": {
|
|
7440
7606
|
"x": {
|
|
7441
7607
|
"type": "number",
|