File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Please do not use issues for support requests. For help using the annotation plu
1212
1313Well structured, detailed bug reports are hugely valuable for the project.
1414
15- Guidlines for reporting bugs:
15+ Guidelines for reporting bugs:
1616
1717- Check the issue search to see if it has already been reported
1818- Isolate the problem to a simple test case
Original file line number Diff line number Diff line change @@ -10,9 +10,16 @@ export interface AnnotationBoxModel {
1010 height : number ,
1111 width : number ,
1212 radius ?: number
13+ // Used by polygon annotations' child point AnnotationElements
14+ bx ?: number ;
15+ by ?: number ;
1316}
1417
1518export interface AnnotationElement extends AnnotationBoxModel {
1619 label ?: AnnotationElement ,
17- options : AnnotationOptions
20+ options : AnnotationOptions ,
21+ /**
22+ * Sub-elements: e.g., a box annotation's label, or a polygon's points
23+ */
24+ elements ?: AnnotationElement [ ] ,
1825}
You can’t perform that action at this time.
0 commit comments