@foxglove/schemas 0.8.1 → 1.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/.github/workflows/ci.yml +36 -4
- package/README.md +2 -2
- package/internal/schemas.d.ts.map +1 -1
- package/internal/schemas.js +15 -7
- package/internal/schemas.js.map +1 -1
- package/internal/schemas.ts +15 -7
- package/package.json +2 -2
- package/python/Makefile +21 -2
- package/python/Pipfile +2 -0
- package/python/Pipfile.lock +90 -191
- package/python/foxglove-schemas-flatbuffer/README.md +38 -0
- package/python/foxglove-schemas-flatbuffer/pyproject.toml +11 -0
- package/python/foxglove-schemas-flatbuffer/setup.cfg +21 -0
- package/python/foxglove-schemas-flatbuffer/tests/test_schemas.py +21 -0
- package/python/foxglove-schemas-protobuf/README.md +1 -1
- package/schemas/README.md +7 -7
- package/schemas/flatbuffer/LinePrimitive.fbs +3 -3
- package/schemas/flatbuffer/PointsAnnotation.fbs +4 -0
- package/schemas/jsonschema/ImageAnnotations.json +8 -4
- package/schemas/jsonschema/LinePrimitive.json +3 -3
- package/schemas/jsonschema/PointsAnnotation.json +8 -4
- package/schemas/jsonschema/SceneEntity.json +3 -3
- package/schemas/jsonschema/SceneUpdate.json +3 -3
- package/schemas/jsonschema/index.d.ts +14 -4
- package/schemas/jsonschema/index.d.ts.map +1 -1
- package/schemas/jsonschema/index.js +25 -17
- package/schemas/jsonschema/index.js.map +1 -1
- package/schemas/jsonschema/index.ts +25 -17
- package/schemas/proto/foxglove/LinePrimitive.proto +3 -3
- package/schemas/proto/foxglove/PointsAnnotation.proto +4 -0
- package/schemas/ros1/LinePrimitive.msg +3 -3
- package/schemas/ros1/PointsAnnotation.msg +8 -0
- package/schemas/ros2/LinePrimitive.msg +3 -3
- package/schemas/ros2/PointsAnnotation.msg +8 -0
- package/schemas/typescript/LineType.d.ts +3 -3
- package/schemas/typescript/LineType.d.ts.map +1 -1
- package/schemas/typescript/LineType.js +3 -3
- package/schemas/typescript/LineType.js.map +1 -1
- package/schemas/typescript/LineType.ts +3 -3
- package/schemas/typescript/PointsAnnotationType.d.ts +4 -0
- package/schemas/typescript/PointsAnnotationType.d.ts.map +1 -1
- package/schemas/typescript/PointsAnnotationType.js +4 -0
- package/schemas/typescript/PointsAnnotationType.js.map +1 -1
- package/schemas/typescript/PointsAnnotationType.ts +4 -0
- package/Linux.flatc.binary.clang++-12.zip +0 -0
- package/flatc +0 -0
|
@@ -937,19 +937,23 @@ export const ImageAnnotations = {
|
|
|
937
937
|
},
|
|
938
938
|
{
|
|
939
939
|
"title": "POINTS",
|
|
940
|
-
"const": 1
|
|
940
|
+
"const": 1,
|
|
941
|
+
"description": "Individual points: 0, 1, 2, ..."
|
|
941
942
|
},
|
|
942
943
|
{
|
|
943
944
|
"title": "LINE_LOOP",
|
|
944
|
-
"const": 2
|
|
945
|
+
"const": 2,
|
|
946
|
+
"description": "Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0"
|
|
945
947
|
},
|
|
946
948
|
{
|
|
947
949
|
"title": "LINE_STRIP",
|
|
948
|
-
"const": 3
|
|
950
|
+
"const": 3,
|
|
951
|
+
"description": "Connected line segments: 0-1, 1-2, ..., (n-1)-n"
|
|
949
952
|
},
|
|
950
953
|
{
|
|
951
954
|
"title": "LINE_LIST",
|
|
952
|
-
"const": 4
|
|
955
|
+
"const": 4,
|
|
956
|
+
"description": "Individual line segments: 0-1, 2-3, 4-5, ..."
|
|
953
957
|
}
|
|
954
958
|
]
|
|
955
959
|
},
|
|
@@ -1186,17 +1190,17 @@ export const LinePrimitive = {
|
|
|
1186
1190
|
{
|
|
1187
1191
|
"title": "LINE_STRIP",
|
|
1188
1192
|
"const": 0,
|
|
1189
|
-
"description": "0-1, 1-2, ..., (n-1)-n"
|
|
1193
|
+
"description": "Connected line segments: 0-1, 1-2, ..., (n-1)-n"
|
|
1190
1194
|
},
|
|
1191
1195
|
{
|
|
1192
1196
|
"title": "LINE_LOOP",
|
|
1193
1197
|
"const": 1,
|
|
1194
|
-
"description": "0-1, 1-2, ..., (n-1)-n, n-0"
|
|
1198
|
+
"description": "Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0"
|
|
1195
1199
|
},
|
|
1196
1200
|
{
|
|
1197
1201
|
"title": "LINE_LIST",
|
|
1198
1202
|
"const": 2,
|
|
1199
|
-
"description": "0-1, 2-3, 4-5, ..."
|
|
1203
|
+
"description": "Individual line segments: 0-1, 2-3, 4-5, ..."
|
|
1200
1204
|
}
|
|
1201
1205
|
]
|
|
1202
1206
|
},
|
|
@@ -2005,17 +2009,17 @@ export const SceneEntity = {
|
|
|
2005
2009
|
{
|
|
2006
2010
|
"title": "LINE_STRIP",
|
|
2007
2011
|
"const": 0,
|
|
2008
|
-
"description": "0-1, 1-2, ..., (n-1)-n"
|
|
2012
|
+
"description": "Connected line segments: 0-1, 1-2, ..., (n-1)-n"
|
|
2009
2013
|
},
|
|
2010
2014
|
{
|
|
2011
2015
|
"title": "LINE_LOOP",
|
|
2012
2016
|
"const": 1,
|
|
2013
|
-
"description": "0-1, 1-2, ..., (n-1)-n, n-0"
|
|
2017
|
+
"description": "Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0"
|
|
2014
2018
|
},
|
|
2015
2019
|
{
|
|
2016
2020
|
"title": "LINE_LIST",
|
|
2017
2021
|
"const": 2,
|
|
2018
|
-
"description": "0-1, 2-3, 4-5, ..."
|
|
2022
|
+
"description": "Individual line segments: 0-1, 2-3, 4-5, ..."
|
|
2019
2023
|
}
|
|
2020
2024
|
]
|
|
2021
2025
|
},
|
|
@@ -3072,17 +3076,17 @@ export const SceneUpdate = {
|
|
|
3072
3076
|
{
|
|
3073
3077
|
"title": "LINE_STRIP",
|
|
3074
3078
|
"const": 0,
|
|
3075
|
-
"description": "0-1, 1-2, ..., (n-1)-n"
|
|
3079
|
+
"description": "Connected line segments: 0-1, 1-2, ..., (n-1)-n"
|
|
3076
3080
|
},
|
|
3077
3081
|
{
|
|
3078
3082
|
"title": "LINE_LOOP",
|
|
3079
3083
|
"const": 1,
|
|
3080
|
-
"description": "0-1, 1-2, ..., (n-1)-n, n-0"
|
|
3084
|
+
"description": "Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0"
|
|
3081
3085
|
},
|
|
3082
3086
|
{
|
|
3083
3087
|
"title": "LINE_LIST",
|
|
3084
3088
|
"const": 2,
|
|
3085
|
-
"description": "0-1, 2-3, 4-5, ..."
|
|
3089
|
+
"description": "Individual line segments: 0-1, 2-3, 4-5, ..."
|
|
3086
3090
|
}
|
|
3087
3091
|
]
|
|
3088
3092
|
},
|
|
@@ -3991,19 +3995,23 @@ export const PointsAnnotation = {
|
|
|
3991
3995
|
},
|
|
3992
3996
|
{
|
|
3993
3997
|
"title": "POINTS",
|
|
3994
|
-
"const": 1
|
|
3998
|
+
"const": 1,
|
|
3999
|
+
"description": "Individual points: 0, 1, 2, ..."
|
|
3995
4000
|
},
|
|
3996
4001
|
{
|
|
3997
4002
|
"title": "LINE_LOOP",
|
|
3998
|
-
"const": 2
|
|
4003
|
+
"const": 2,
|
|
4004
|
+
"description": "Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0"
|
|
3999
4005
|
},
|
|
4000
4006
|
{
|
|
4001
4007
|
"title": "LINE_STRIP",
|
|
4002
|
-
"const": 3
|
|
4008
|
+
"const": 3,
|
|
4009
|
+
"description": "Connected line segments: 0-1, 1-2, ..., (n-1)-n"
|
|
4003
4010
|
},
|
|
4004
4011
|
{
|
|
4005
4012
|
"title": "LINE_LIST",
|
|
4006
|
-
"const": 4
|
|
4013
|
+
"const": 4,
|
|
4014
|
+
"description": "Individual line segments: 0-1, 2-3, 4-5, ..."
|
|
4007
4015
|
}
|
|
4008
4016
|
]
|
|
4009
4017
|
},
|
|
@@ -12,13 +12,13 @@ package foxglove;
|
|
|
12
12
|
message LinePrimitive {
|
|
13
13
|
// An enumeration indicating how input points should be interpreted to create lines
|
|
14
14
|
enum Type {
|
|
15
|
-
// 0-1, 1-2, ..., (n-1)-n
|
|
15
|
+
// Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
16
16
|
LINE_STRIP = 0;
|
|
17
17
|
|
|
18
|
-
// 0-1, 1-2, ..., (n-1)-n, n-0
|
|
18
|
+
// Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
19
19
|
LINE_LOOP = 1;
|
|
20
20
|
|
|
21
|
-
// 0-1, 2-3, 4-5, ...
|
|
21
|
+
// Individual line segments: 0-1, 2-3, 4-5, ...
|
|
22
22
|
LINE_LIST = 2;
|
|
23
23
|
}
|
|
24
24
|
// Drawing primitive to use for lines
|
|
@@ -14,12 +14,16 @@ message PointsAnnotation {
|
|
|
14
14
|
enum Type {
|
|
15
15
|
UNKNOWN = 0;
|
|
16
16
|
|
|
17
|
+
// Individual points: 0, 1, 2, ...
|
|
17
18
|
POINTS = 1;
|
|
18
19
|
|
|
20
|
+
// Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
19
21
|
LINE_LOOP = 2;
|
|
20
22
|
|
|
23
|
+
// Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
21
24
|
LINE_STRIP = 3;
|
|
22
25
|
|
|
26
|
+
// Individual line segments: 0-1, 2-3, 4-5, ...
|
|
23
27
|
LINE_LIST = 4;
|
|
24
28
|
}
|
|
25
29
|
// Timestamp of annotation
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
# Generated by https://github.com/foxglove/schemas
|
|
5
5
|
|
|
6
|
-
# 0-1, 1-2, ..., (n-1)-n
|
|
6
|
+
# Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
7
7
|
uint8 LINE_STRIP=0
|
|
8
8
|
|
|
9
|
-
# 0-1, 1-2, ..., (n-1)-n, n-0
|
|
9
|
+
# Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
10
10
|
uint8 LINE_LOOP=1
|
|
11
11
|
|
|
12
|
-
# 0-1, 2-3, 4-5, ...
|
|
12
|
+
# Individual line segments: 0-1, 2-3, 4-5, ...
|
|
13
13
|
uint8 LINE_LIST=2
|
|
14
14
|
|
|
15
15
|
# Drawing primitive to use for lines
|
|
@@ -7,9 +7,17 @@
|
|
|
7
7
|
time timestamp
|
|
8
8
|
|
|
9
9
|
uint8 UNKNOWN=0
|
|
10
|
+
|
|
11
|
+
# Individual points: 0, 1, 2, ...
|
|
10
12
|
uint8 POINTS=1
|
|
13
|
+
|
|
14
|
+
# Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
11
15
|
uint8 LINE_LOOP=2
|
|
16
|
+
|
|
17
|
+
# Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
12
18
|
uint8 LINE_STRIP=3
|
|
19
|
+
|
|
20
|
+
# Individual line segments: 0-1, 2-3, 4-5, ...
|
|
13
21
|
uint8 LINE_LIST=4
|
|
14
22
|
|
|
15
23
|
# Type of points annotation to draw
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
# Generated by https://github.com/foxglove/schemas
|
|
5
5
|
|
|
6
|
-
# 0-1, 1-2, ..., (n-1)-n
|
|
6
|
+
# Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
7
7
|
uint8 LINE_STRIP=0
|
|
8
8
|
|
|
9
|
-
# 0-1, 1-2, ..., (n-1)-n, n-0
|
|
9
|
+
# Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
10
10
|
uint8 LINE_LOOP=1
|
|
11
11
|
|
|
12
|
-
# 0-1, 2-3, 4-5, ...
|
|
12
|
+
# Individual line segments: 0-1, 2-3, 4-5, ...
|
|
13
13
|
uint8 LINE_LIST=2
|
|
14
14
|
|
|
15
15
|
# Drawing primitive to use for lines
|
|
@@ -7,9 +7,17 @@
|
|
|
7
7
|
builtin_interfaces/Time timestamp
|
|
8
8
|
|
|
9
9
|
uint8 UNKNOWN=0
|
|
10
|
+
|
|
11
|
+
# Individual points: 0, 1, 2, ...
|
|
10
12
|
uint8 POINTS=1
|
|
13
|
+
|
|
14
|
+
# Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0
|
|
11
15
|
uint8 LINE_LOOP=2
|
|
16
|
+
|
|
17
|
+
# Connected line segments: 0-1, 1-2, ..., (n-1)-n
|
|
12
18
|
uint8 LINE_STRIP=3
|
|
19
|
+
|
|
20
|
+
# Individual line segments: 0-1, 2-3, 4-5, ...
|
|
13
21
|
uint8 LINE_LIST=4
|
|
14
22
|
|
|
15
23
|
# Type of points annotation to draw
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/** An enumeration indicating how input points should be interpreted to create lines */
|
|
2
2
|
export declare enum LineType {
|
|
3
|
-
/** 0-1, 1-2, ..., (n-1)-n */
|
|
3
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
4
4
|
LINE_STRIP = 0,
|
|
5
|
-
/** 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
5
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
6
6
|
LINE_LOOP = 1,
|
|
7
|
-
/** 0-1, 2-3, 4-5, ... */
|
|
7
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
8
8
|
LINE_LIST = 2
|
|
9
9
|
}
|
|
10
10
|
//# sourceMappingURL=LineType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LineType.d.ts","sourceRoot":"","sources":["LineType.ts"],"names":[],"mappings":"AAEA,uFAAuF;AACvF,oBAAY,QAAQ;IAClB,
|
|
1
|
+
{"version":3,"file":"LineType.d.ts","sourceRoot":"","sources":["LineType.ts"],"names":[],"mappings":"AAEA,uFAAuF;AACvF,oBAAY,QAAQ;IAClB,sDAAsD;IACtD,UAAU,IAAI;IAEd,kDAAkD;IAClD,SAAS,IAAI;IAEb,mDAAmD;IACnD,SAAS,IAAI;CACd"}
|
|
@@ -5,11 +5,11 @@ exports.LineType = void 0;
|
|
|
5
5
|
/** An enumeration indicating how input points should be interpreted to create lines */
|
|
6
6
|
var LineType;
|
|
7
7
|
(function (LineType) {
|
|
8
|
-
/** 0-1, 1-2, ..., (n-1)-n */
|
|
8
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
9
9
|
LineType[LineType["LINE_STRIP"] = 0] = "LINE_STRIP";
|
|
10
|
-
/** 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
10
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
11
11
|
LineType[LineType["LINE_LOOP"] = 1] = "LINE_LOOP";
|
|
12
|
-
/** 0-1, 2-3, 4-5, ... */
|
|
12
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
13
13
|
LineType[LineType["LINE_LIST"] = 2] = "LINE_LIST";
|
|
14
14
|
})(LineType = exports.LineType || (exports.LineType = {}));
|
|
15
15
|
//# sourceMappingURL=LineType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LineType.js","sourceRoot":"","sources":["LineType.ts"],"names":[],"mappings":";AAAA,mDAAmD;;;AAEnD,uFAAuF;AACvF,IAAY,QASX;AATD,WAAY,QAAQ;IAClB,
|
|
1
|
+
{"version":3,"file":"LineType.js","sourceRoot":"","sources":["LineType.ts"],"names":[],"mappings":";AAAA,mDAAmD;;;AAEnD,uFAAuF;AACvF,IAAY,QASX;AATD,WAAY,QAAQ;IAClB,sDAAsD;IACtD,mDAAc,CAAA;IAEd,kDAAkD;IAClD,iDAAa,CAAA;IAEb,mDAAmD;IACnD,iDAAa,CAAA;AACf,CAAC,EATW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QASnB"}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
/** An enumeration indicating how input points should be interpreted to create lines */
|
|
4
4
|
export enum LineType {
|
|
5
|
-
/** 0-1, 1-2, ..., (n-1)-n */
|
|
5
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
6
6
|
LINE_STRIP = 0,
|
|
7
7
|
|
|
8
|
-
/** 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
8
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
9
9
|
LINE_LOOP = 1,
|
|
10
10
|
|
|
11
|
-
/** 0-1, 2-3, 4-5, ... */
|
|
11
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
12
12
|
LINE_LIST = 2,
|
|
13
13
|
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
/** Type of points annotation */
|
|
2
2
|
export declare enum PointsAnnotationType {
|
|
3
3
|
UNKNOWN = 0,
|
|
4
|
+
/** Individual points: 0, 1, 2, ... */
|
|
4
5
|
POINTS = 1,
|
|
6
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
5
7
|
LINE_LOOP = 2,
|
|
8
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
6
9
|
LINE_STRIP = 3,
|
|
10
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
7
11
|
LINE_LIST = 4
|
|
8
12
|
}
|
|
9
13
|
//# sourceMappingURL=PointsAnnotationType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PointsAnnotationType.d.ts","sourceRoot":"","sources":["PointsAnnotationType.ts"],"names":[],"mappings":"AAEA,gCAAgC;AAChC,oBAAY,oBAAoB;IAC9B,OAAO,IAAI;IAEX,MAAM,IAAI;IAEV,SAAS,IAAI;IAEb,UAAU,IAAI;IAEd,SAAS,IAAI;CACd"}
|
|
1
|
+
{"version":3,"file":"PointsAnnotationType.d.ts","sourceRoot":"","sources":["PointsAnnotationType.ts"],"names":[],"mappings":"AAEA,gCAAgC;AAChC,oBAAY,oBAAoB;IAC9B,OAAO,IAAI;IAEX,sCAAsC;IACtC,MAAM,IAAI;IAEV,kDAAkD;IAClD,SAAS,IAAI;IAEb,sDAAsD;IACtD,UAAU,IAAI;IAEd,mDAAmD;IACnD,SAAS,IAAI;CACd"}
|
|
@@ -6,9 +6,13 @@ exports.PointsAnnotationType = void 0;
|
|
|
6
6
|
var PointsAnnotationType;
|
|
7
7
|
(function (PointsAnnotationType) {
|
|
8
8
|
PointsAnnotationType[PointsAnnotationType["UNKNOWN"] = 0] = "UNKNOWN";
|
|
9
|
+
/** Individual points: 0, 1, 2, ... */
|
|
9
10
|
PointsAnnotationType[PointsAnnotationType["POINTS"] = 1] = "POINTS";
|
|
11
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
10
12
|
PointsAnnotationType[PointsAnnotationType["LINE_LOOP"] = 2] = "LINE_LOOP";
|
|
13
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
11
14
|
PointsAnnotationType[PointsAnnotationType["LINE_STRIP"] = 3] = "LINE_STRIP";
|
|
15
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
12
16
|
PointsAnnotationType[PointsAnnotationType["LINE_LIST"] = 4] = "LINE_LIST";
|
|
13
17
|
})(PointsAnnotationType = exports.PointsAnnotationType || (exports.PointsAnnotationType = {}));
|
|
14
18
|
//# sourceMappingURL=PointsAnnotationType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PointsAnnotationType.js","sourceRoot":"","sources":["PointsAnnotationType.ts"],"names":[],"mappings":";AAAA,mDAAmD;;;AAEnD,gCAAgC;AAChC,IAAY,
|
|
1
|
+
{"version":3,"file":"PointsAnnotationType.js","sourceRoot":"","sources":["PointsAnnotationType.ts"],"names":[],"mappings":";AAAA,mDAAmD;;;AAEnD,gCAAgC;AAChC,IAAY,oBAcX;AAdD,WAAY,oBAAoB;IAC9B,qEAAW,CAAA;IAEX,sCAAsC;IACtC,mEAAU,CAAA;IAEV,kDAAkD;IAClD,yEAAa,CAAA;IAEb,sDAAsD;IACtD,2EAAc,CAAA;IAEd,mDAAmD;IACnD,yEAAa,CAAA;AACf,CAAC,EAdW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAc/B"}
|
|
@@ -4,11 +4,15 @@
|
|
|
4
4
|
export enum PointsAnnotationType {
|
|
5
5
|
UNKNOWN = 0,
|
|
6
6
|
|
|
7
|
+
/** Individual points: 0, 1, 2, ... */
|
|
7
8
|
POINTS = 1,
|
|
8
9
|
|
|
10
|
+
/** Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 */
|
|
9
11
|
LINE_LOOP = 2,
|
|
10
12
|
|
|
13
|
+
/** Connected line segments: 0-1, 1-2, ..., (n-1)-n */
|
|
11
14
|
LINE_STRIP = 3,
|
|
12
15
|
|
|
16
|
+
/** Individual line segments: 0-1, 2-3, 4-5, ... */
|
|
13
17
|
LINE_LIST = 4,
|
|
14
18
|
}
|
|
Binary file
|
package/flatc
DELETED
|
Binary file
|