Fix actor font size

This commit is contained in:
Júlio César Batista 2022-12-02 19:15:04 -08:00
parent b2e310d6ac
commit a2f7abc316
No known key found for this signature in database
GPG key ID: 10C4B861BF314878
14 changed files with 1497 additions and 1496 deletions

View file

@ -399,6 +399,10 @@ func (obj *Object) IsContainer() bool {
return len(obj.Children) > 0 return len(obj.Children) > 0
} }
func (obj *Object) IsSequenceDiagram() bool {
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
}
func (obj *Object) AbsID() string { func (obj *Object) AbsID() string {
if obj.Parent != nil && obj.Parent.ID != "" { if obj.Parent != nil && obj.Parent.ID != "" {
return obj.Parent.AbsID() + "." + obj.ID return obj.Parent.AbsID() + "." + obj.ID
@ -415,7 +419,8 @@ func (obj *Object) AbsIDArray() []string {
func (obj *Object) Text() *d2target.MText { func (obj *Object) Text() *d2target.MText {
fontSize := d2fonts.FONT_SIZE_M fontSize := d2fonts.FONT_SIZE_M
if obj.IsContainer() { if obj.IsContainer() && !obj.Parent.IsSequenceDiagram() {
// sequence diagram children (aka, actors) shouldn't have the container font size
fontSize = obj.Level().LabelSize() fontSize = obj.Level().LabelSize()
} }
if obj.Attributes.Style.FontSize != nil { if obj.Attributes.Style.FontSize != nil {

View file

@ -60,7 +60,7 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte
layoutObjects, objectOrder := getLayoutObjects(g, objectsToRemove) layoutObjects, objectOrder := getLayoutObjects(g, objectsToRemove)
g.Objects = layoutObjects g.Objects = layoutObjects
if isRootSequenceDiagram(g) { if g.Root.IsSequenceDiagram() {
// the sequence diagram is the only layout engine if the whole diagram is // the sequence diagram is the only layout engine if the whole diagram is
// shape: sequence_diagram // shape: sequence_diagram
g.Root.TopLeft = geo.NewPoint(0, 0) g.Root.TopLeft = geo.NewPoint(0, 0)
@ -72,10 +72,6 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte
return nil return nil
} }
func isRootSequenceDiagram(g *d2graph.Graph) bool {
return g.Root.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
}
// layoutSequenceDiagram finds the edges inside the sequence diagram and performs the layout on the object descendants // layoutSequenceDiagram finds the edges inside the sequence diagram and performs the layout on the object descendants
func layoutSequenceDiagram(g *d2graph.Graph, obj *d2graph.Object) *sequenceDiagram { func layoutSequenceDiagram(g *d2graph.Graph, obj *d2graph.Object) *sequenceDiagram {
var edges []*d2graph.Edge var edges []*d2graph.Edge
@ -124,7 +120,7 @@ func getLayoutObjects(g *d2graph.Graph, toRemove map[*d2graph.Object]struct{}) (
// - sorts edges and objects to their original graph order // - sorts edges and objects to their original graph order
func cleanup(g *d2graph.Graph, sequenceDiagrams map[string]*sequenceDiagram, objectsOrder, edgesOrder map[string]int) { func cleanup(g *d2graph.Graph, sequenceDiagrams map[string]*sequenceDiagram, objectsOrder, edgesOrder map[string]int) {
var objects []*d2graph.Object var objects []*d2graph.Object
if isRootSequenceDiagram(g) { if g.Root.IsSequenceDiagram() {
objects = []*d2graph.Object{g.Root} objects = []*d2graph.Object{g.Root}
} else { } else {
objects = g.Objects objects = g.Objects

View file

@ -6,10 +6,10 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 50 "y": 62
}, },
"width": 179, "width": 150,
"height": 141, "height": 128,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
@ -27,15 +27,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "scorer", "label": "scorer",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 48,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -44,8 +44,8 @@
"id": "scorer.abc", "id": "scorer.abc",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 83, "x": 69,
"y": 1085 "y": 1084
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -82,11 +82,11 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 429, "x": 400,
"y": 50 "y": 64
}, },
"width": 270, "width": 200,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -104,15 +104,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemResponse", "label": "itemResponse",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 170, "labelWidth": 100,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -121,8 +121,8 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -159,11 +159,11 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 949, "x": 850,
"y": 50 "y": 50
}, },
"width": 157, "width": 150,
"height": 141, "height": 140,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "item", "label": "item",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 35,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -198,8 +198,8 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 419 "y": 418
}, },
"width": 12, "width": 12,
"height": 698, "height": 698,
@ -236,8 +236,8 @@
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1017, "x": 915,
"y": 435 "y": 434
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -274,11 +274,11 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1356, "x": 1250,
"y": 50 "y": 64
}, },
"width": 245, "width": 186,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -296,15 +296,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "essayRubric", "label": "essayRubric",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 145, "labelWidth": 86,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -313,8 +313,8 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1472, "x": 1337,
"y": 533 "y": 532
}, },
"width": 12, "width": 12,
"height": 340, "height": 340,
@ -351,8 +351,8 @@
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1468, "x": 1333,
"y": 549 "y": 548
}, },
"width": 20, "width": 20,
"height": 308, "height": 308,
@ -389,8 +389,8 @@
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1464, "x": 1329,
"y": 565 "y": 564
}, },
"width": 28, "width": 28,
"height": 162, "height": 162,
@ -427,11 +427,11 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1851, "x": 1686,
"y": 50 "y": 64
}, },
"width": 200, "width": 160,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -449,15 +449,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "concept", "label": "concept",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 60,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -466,8 +466,8 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1945, "x": 1760,
"y": 647 "y": 646
}, },
"width": 12, "width": 12,
"height": 388, "height": 388,
@ -504,8 +504,8 @@
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1941, "x": 1756,
"y": 663 "y": 662
}, },
"width": 20, "width": 20,
"height": 356, "height": 356,
@ -542,8 +542,8 @@
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1937, "x": 1752,
"y": 679 "y": 678
}, },
"width": 28, "width": 28,
"height": 324, "height": 324,
@ -580,8 +580,8 @@
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1933, "x": 1748,
"y": 695 "y": 694
}, },
"width": 36, "width": 36,
"height": 292, "height": 292,
@ -618,11 +618,11 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2301, "x": 2096,
"y": 50 "y": 64
}, },
"width": 265, "width": 197,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -640,15 +640,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemOutcome", "label": "itemOutcome",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 165, "labelWidth": 97,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -657,8 +657,8 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 891 "y": 890
}, },
"width": 12, "width": 12,
"height": 420, "height": 420,
@ -695,8 +695,8 @@
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2423, "x": 2184,
"y": 907 "y": 906
}, },
"width": 20, "width": 20,
"height": 388, "height": 388,
@ -733,8 +733,8 @@
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2419, "x": 2180,
"y": 923 "y": 922
}, },
"width": 28, "width": 28,
"height": 356, "height": 356,
@ -771,8 +771,8 @@
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2415, "x": 2176,
"y": 939 "y": 938
}, },
"width": 36, "width": 36,
"height": 324, "height": 324,
@ -809,8 +809,8 @@
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2411, "x": 2172,
"y": 955 "y": 954
}, },
"width": 44, "width": 44,
"height": 292, "height": 292,
@ -847,8 +847,8 @@
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 1345 "y": 1344
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -909,12 +909,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 321 "y": 320
}, },
{ {
"x": 558, "x": 494,
"y": 321 "y": 320
} }
], ],
"animated": false, "animated": false,
@ -948,12 +948,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 570, "x": 506,
"y": 451 "y": 450
}, },
{ {
"x": 1017.5, "x": 915,
"y": 451 "y": 450
} }
], ],
"animated": false, "animated": false,
@ -987,12 +987,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1037.5, "x": 935,
"y": 581 "y": 580
}, },
{ {
"x": 1464.5, "x": 1329,
"y": 581 "y": 580
} }
], ],
"animated": false, "animated": false,
@ -1026,12 +1026,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1492.5, "x": 1357,
"y": 711 "y": 710
}, },
{ {
"x": 1933, "x": 1748,
"y": 711 "y": 710
} }
], ],
"animated": false, "animated": false,
@ -1065,12 +1065,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1033.5, "x": 931,
"y": 841 "y": 840
}, },
{ {
"x": 1468.5, "x": 1333,
"y": 841 "y": 840
} }
], ],
"animated": false, "animated": false,
@ -1104,12 +1104,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1969, "x": 1784,
"y": 971 "y": 970
}, },
{ {
"x": 2411.5, "x": 2172.5,
"y": 971 "y": 970
} }
], ],
"animated": false, "animated": false,
@ -1143,12 +1143,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1101 "y": 1100
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1101 "y": 1100
} }
], ],
"animated": false, "animated": false,
@ -1182,12 +1182,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2411.5, "x": 2172.5,
"y": 1231 "y": 1230
}, },
{ {
"x": 89.5, "x": 75,
"y": 1231 "y": 1230
} }
], ],
"animated": false, "animated": false,
@ -1221,12 +1221,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 1361 "y": 1360
}, },
{ {
"x": 558, "x": 494,
"y": 1361 "y": 1360
} }
], ],
"animated": false, "animated": false,
@ -1260,12 +1260,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 191 "y": 190
}, },
{ {
"x": 89.5, "x": 75,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1299,12 +1299,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 191 "y": 190
}, },
{ {
"x": 564, "x": 500,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1338,12 +1338,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1027.5, "x": 925,
"y": 191 "y": 190
}, },
{ {
"x": 1027.5, "x": 925,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1377,12 +1377,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1478.5, "x": 1343,
"y": 191 "y": 190
}, },
{ {
"x": 1478.5, "x": 1343,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1416,12 +1416,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1951, "x": 1766,
"y": 191 "y": 190
}, },
{ {
"x": 1951, "x": 1766,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1455,12 +1455,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2433.5, "x": 2194.5,
"y": 191 "y": 190
}, },
{ {
"x": 2433.5, "x": 2194.5,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -6,10 +6,10 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 50 "y": 62
}, },
"width": 179, "width": 150,
"height": 141, "height": 128,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
@ -27,15 +27,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "scorer", "label": "scorer",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 48,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -44,8 +44,8 @@
"id": "scorer.abc", "id": "scorer.abc",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 83, "x": 69,
"y": 1085 "y": 1084
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -82,11 +82,11 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 429, "x": 400,
"y": 50 "y": 64
}, },
"width": 270, "width": 200,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -104,15 +104,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemResponse", "label": "itemResponse",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 170, "labelWidth": 100,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -121,8 +121,8 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -159,11 +159,11 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 949, "x": 850,
"y": 50 "y": 50
}, },
"width": 157, "width": 150,
"height": 141, "height": 140,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "item", "label": "item",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 35,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -198,8 +198,8 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 419 "y": 418
}, },
"width": 12, "width": 12,
"height": 698, "height": 698,
@ -236,8 +236,8 @@
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1017, "x": 915,
"y": 435 "y": 434
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -274,11 +274,11 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1356, "x": 1250,
"y": 50 "y": 64
}, },
"width": 245, "width": 186,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -296,15 +296,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "essayRubric", "label": "essayRubric",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 145, "labelWidth": 86,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -313,8 +313,8 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1472, "x": 1337,
"y": 533 "y": 532
}, },
"width": 12, "width": 12,
"height": 340, "height": 340,
@ -351,8 +351,8 @@
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1468, "x": 1333,
"y": 549 "y": 548
}, },
"width": 20, "width": 20,
"height": 308, "height": 308,
@ -389,8 +389,8 @@
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1464, "x": 1329,
"y": 565 "y": 564
}, },
"width": 28, "width": 28,
"height": 162, "height": 162,
@ -427,11 +427,11 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1851, "x": 1686,
"y": 50 "y": 64
}, },
"width": 200, "width": 160,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -449,15 +449,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "concept", "label": "concept",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 60,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -466,8 +466,8 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1945, "x": 1760,
"y": 647 "y": 646
}, },
"width": 12, "width": 12,
"height": 388, "height": 388,
@ -504,8 +504,8 @@
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1941, "x": 1756,
"y": 663 "y": 662
}, },
"width": 20, "width": 20,
"height": 356, "height": 356,
@ -542,8 +542,8 @@
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1937, "x": 1752,
"y": 679 "y": 678
}, },
"width": 28, "width": 28,
"height": 324, "height": 324,
@ -580,8 +580,8 @@
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1933, "x": 1748,
"y": 695 "y": 694
}, },
"width": 36, "width": 36,
"height": 292, "height": 292,
@ -618,11 +618,11 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2301, "x": 2096,
"y": 50 "y": 64
}, },
"width": 265, "width": 197,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -640,15 +640,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemOutcome", "label": "itemOutcome",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 165, "labelWidth": 97,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -657,8 +657,8 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 891 "y": 890
}, },
"width": 12, "width": 12,
"height": 420, "height": 420,
@ -695,8 +695,8 @@
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2423, "x": 2184,
"y": 907 "y": 906
}, },
"width": 20, "width": 20,
"height": 388, "height": 388,
@ -733,8 +733,8 @@
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2419, "x": 2180,
"y": 923 "y": 922
}, },
"width": 28, "width": 28,
"height": 356, "height": 356,
@ -771,8 +771,8 @@
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2415, "x": 2176,
"y": 939 "y": 938
}, },
"width": 36, "width": 36,
"height": 324, "height": 324,
@ -809,8 +809,8 @@
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2411, "x": 2172,
"y": 955 "y": 954
}, },
"width": 44, "width": 44,
"height": 292, "height": 292,
@ -847,8 +847,8 @@
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 1345 "y": 1344
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -909,12 +909,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 321 "y": 320
}, },
{ {
"x": 558, "x": 494,
"y": 321 "y": 320
} }
], ],
"animated": false, "animated": false,
@ -948,12 +948,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 570, "x": 506,
"y": 451 "y": 450
}, },
{ {
"x": 1017.5, "x": 915,
"y": 451 "y": 450
} }
], ],
"animated": false, "animated": false,
@ -987,12 +987,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1037.5, "x": 935,
"y": 581 "y": 580
}, },
{ {
"x": 1464.5, "x": 1329,
"y": 581 "y": 580
} }
], ],
"animated": false, "animated": false,
@ -1026,12 +1026,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1492.5, "x": 1357,
"y": 711 "y": 710
}, },
{ {
"x": 1933, "x": 1748,
"y": 711 "y": 710
} }
], ],
"animated": false, "animated": false,
@ -1065,12 +1065,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1033.5, "x": 931,
"y": 841 "y": 840
}, },
{ {
"x": 1468.5, "x": 1333,
"y": 841 "y": 840
} }
], ],
"animated": false, "animated": false,
@ -1104,12 +1104,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1969, "x": 1784,
"y": 971 "y": 970
}, },
{ {
"x": 2411.5, "x": 2172.5,
"y": 971 "y": 970
} }
], ],
"animated": false, "animated": false,
@ -1143,12 +1143,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1101 "y": 1100
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1101 "y": 1100
} }
], ],
"animated": false, "animated": false,
@ -1182,12 +1182,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2411.5, "x": 2172.5,
"y": 1231 "y": 1230
}, },
{ {
"x": 89.5, "x": 75,
"y": 1231 "y": 1230
} }
], ],
"animated": false, "animated": false,
@ -1221,12 +1221,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 1361 "y": 1360
}, },
{ {
"x": 558, "x": 494,
"y": 1361 "y": 1360
} }
], ],
"animated": false, "animated": false,
@ -1260,12 +1260,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 191 "y": 190
}, },
{ {
"x": 89.5, "x": 75,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1299,12 +1299,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 191 "y": 190
}, },
{ {
"x": 564, "x": 500,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1338,12 +1338,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1027.5, "x": 925,
"y": 191 "y": 190
}, },
{ {
"x": 1027.5, "x": 925,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1377,12 +1377,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1478.5, "x": 1343,
"y": 191 "y": 190
}, },
{ {
"x": 1478.5, "x": 1343,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1416,12 +1416,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1951, "x": 1766,
"y": 191 "y": 190
}, },
{ {
"x": 1951, "x": 1766,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1455,12 +1455,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2433.5, "x": 2194.5,
"y": 191 "y": 190
}, },
{ {
"x": 2433.5, "x": 2194.5,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -6,10 +6,10 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 50 "y": 62
}, },
"width": 179, "width": 150,
"height": 141, "height": 128,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -27,15 +27,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "scorer", "label": "scorer",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 48,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -44,8 +44,8 @@
"id": "scorer.t", "id": "scorer.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 83, "x": 69,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 1592, "height": 1592,
@ -82,11 +82,11 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 429, "x": 400,
"y": 50 "y": 64
}, },
"width": 270, "width": 200,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -104,15 +104,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemResponse", "label": "itemResponse",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 170, "labelWidth": 100,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -121,8 +121,8 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -159,11 +159,11 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 949, "x": 850,
"y": 50 "y": 50
}, },
"width": 157, "width": 150,
"height": 141, "height": 140,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "item", "label": "item",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 35,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -198,8 +198,8 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 565 "y": 564
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -236,11 +236,11 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1356, "x": 1250,
"y": 50 "y": 64
}, },
"width": 245, "width": 186,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -258,15 +258,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "essayRubric", "label": "essayRubric",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 145, "labelWidth": 86,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -275,8 +275,8 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1472, "x": 1337,
"y": 825 "y": 824
}, },
"width": 12, "width": 12,
"height": 422, "height": 422,
@ -313,8 +313,8 @@
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1468, "x": 1333,
"y": 955 "y": 954
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -351,11 +351,11 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1851, "x": 1686,
"y": 50 "y": 64
}, },
"width": 200, "width": 160,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -373,15 +373,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "concept", "label": "concept",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 60,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -390,8 +390,8 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1945, "x": 1760,
"y": 1085 "y": 1084
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -428,11 +428,11 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2301, "x": 2096,
"y": 50 "y": 64
}, },
"width": 265, "width": 197,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -450,15 +450,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemOutcome", "label": "itemOutcome",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 165, "labelWidth": 97,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -467,8 +467,8 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1345 "y": 1344
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -505,8 +505,8 @@
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 1475 "y": 1474
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -543,8 +543,8 @@
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 1605 "y": 1604
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -581,8 +581,8 @@
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1735 "y": 1734
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -619,8 +619,8 @@
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1865 "y": 1864
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -681,12 +681,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 321 "y": 320
}, },
{ {
"x": 558, "x": 494,
"y": 321 "y": 320
} }
], ],
"animated": false, "animated": false,
@ -720,12 +720,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 451 "y": 450
}, },
{ {
"x": 558, "x": 494,
"y": 451 "y": 450
} }
], ],
"animated": false, "animated": false,
@ -759,12 +759,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 581 "y": 580
}, },
{ {
"x": 1021.5, "x": 919,
"y": 581 "y": 580
} }
], ],
"animated": false, "animated": false,
@ -798,12 +798,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 711 "y": 710
}, },
{ {
"x": 1021.5, "x": 919,
"y": 711 "y": 710
} }
], ],
"animated": false, "animated": false,
@ -837,12 +837,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 841 "y": 840
}, },
{ {
"x": 1472.5, "x": 1337,
"y": 841 "y": 840
} }
], ],
"animated": false, "animated": false,
@ -876,12 +876,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 971 "y": 970
}, },
{ {
"x": 1468.5, "x": 1333,
"y": 971 "y": 970
} }
], ],
"animated": false, "animated": false,
@ -915,12 +915,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1488.5, "x": 1353,
"y": 1101 "y": 1100
}, },
{ {
"x": 1945, "x": 1760,
"y": 1101 "y": 1100
} }
], ],
"animated": false, "animated": false,
@ -954,12 +954,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 1231 "y": 1230
}, },
{ {
"x": 1472.5, "x": 1337,
"y": 1231 "y": 1230
} }
], ],
"animated": false, "animated": false,
@ -993,12 +993,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1361 "y": 1360
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1361 "y": 1360
} }
], ],
"animated": false, "animated": false,
@ -1032,12 +1032,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1491 "y": 1490
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1071,12 +1071,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1621 "y": 1620
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1621 "y": 1620
} }
], ],
"animated": false, "animated": false,
@ -1110,12 +1110,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1751 "y": 1750
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1751 "y": 1750
} }
], ],
"animated": false, "animated": false,
@ -1149,12 +1149,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1881 "y": 1880
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1881 "y": 1880
} }
], ],
"animated": false, "animated": false,
@ -1188,12 +1188,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 191 "y": 190
}, },
{ {
"x": 89.5, "x": 75,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1227,12 +1227,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 191 "y": 190
}, },
{ {
"x": 564, "x": 500,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1266,12 +1266,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1027.5, "x": 925,
"y": 191 "y": 190
}, },
{ {
"x": 1027.5, "x": 925,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1305,12 +1305,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1478.5, "x": 1343,
"y": 191 "y": 190
}, },
{ {
"x": 1478.5, "x": 1343,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1344,12 +1344,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1951, "x": 1766,
"y": 191 "y": 190
}, },
{ {
"x": 1951, "x": 1766,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1383,12 +1383,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2433.5, "x": 2194.5,
"y": 191 "y": 190
}, },
{ {
"x": 2433.5, "x": 2194.5,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 476 KiB

After

Width:  |  Height:  |  Size: 476 KiB

View file

@ -6,10 +6,10 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 50 "y": 62
}, },
"width": 179, "width": 150,
"height": 141, "height": 128,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -27,15 +27,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "scorer", "label": "scorer",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 48,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -44,8 +44,8 @@
"id": "scorer.t", "id": "scorer.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 83, "x": 69,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 1592, "height": 1592,
@ -82,11 +82,11 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 429, "x": 400,
"y": 50 "y": 64
}, },
"width": 270, "width": 200,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -104,15 +104,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemResponse", "label": "itemResponse",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 170, "labelWidth": 100,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -121,8 +121,8 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 558, "x": 494,
"y": 305 "y": 304
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -159,11 +159,11 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 949, "x": 850,
"y": 50 "y": 50
}, },
"width": 157, "width": 150,
"height": 141, "height": 140,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "item", "label": "item",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 35,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -198,8 +198,8 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 565 "y": 564
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -236,11 +236,11 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1356, "x": 1250,
"y": 50 "y": 64
}, },
"width": 245, "width": 186,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -258,15 +258,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "essayRubric", "label": "essayRubric",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 145, "labelWidth": 86,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -275,8 +275,8 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1472, "x": 1337,
"y": 825 "y": 824
}, },
"width": 12, "width": 12,
"height": 422, "height": 422,
@ -313,8 +313,8 @@
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1468, "x": 1333,
"y": 955 "y": 954
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -351,11 +351,11 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1851, "x": 1686,
"y": 50 "y": 64
}, },
"width": 200, "width": 160,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -373,15 +373,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "concept", "label": "concept",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 60,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -390,8 +390,8 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1945, "x": 1760,
"y": 1085 "y": 1084
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -428,11 +428,11 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2301, "x": 2096,
"y": 50 "y": 64
}, },
"width": 265, "width": 197,
"height": 141, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -450,15 +450,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "itemOutcome", "label": "itemOutcome",
"fontSize": 28, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": true,
"underline": false, "underline": false,
"labelWidth": 165, "labelWidth": 97,
"labelHeight": 41, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
"level": 1 "level": 1
@ -467,8 +467,8 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1345 "y": 1344
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -505,8 +505,8 @@
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 1475 "y": 1474
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -543,8 +543,8 @@
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1021, "x": 919,
"y": 1605 "y": 1604
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -581,8 +581,8 @@
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1735 "y": 1734
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -619,8 +619,8 @@
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2427, "x": 2188,
"y": 1865 "y": 1864
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -681,12 +681,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 321 "y": 320
}, },
{ {
"x": 558, "x": 494,
"y": 321 "y": 320
} }
], ],
"animated": false, "animated": false,
@ -720,12 +720,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 451 "y": 450
}, },
{ {
"x": 558, "x": 494,
"y": 451 "y": 450
} }
], ],
"animated": false, "animated": false,
@ -759,12 +759,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 581 "y": 580
}, },
{ {
"x": 1021.5, "x": 919,
"y": 581 "y": 580
} }
], ],
"animated": false, "animated": false,
@ -798,12 +798,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 711 "y": 710
}, },
{ {
"x": 1021.5, "x": 919,
"y": 711 "y": 710
} }
], ],
"animated": false, "animated": false,
@ -837,12 +837,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 841 "y": 840
}, },
{ {
"x": 1472.5, "x": 1337,
"y": 841 "y": 840
} }
], ],
"animated": false, "animated": false,
@ -876,12 +876,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 971 "y": 970
}, },
{ {
"x": 1468.5, "x": 1333,
"y": 971 "y": 970
} }
], ],
"animated": false, "animated": false,
@ -915,12 +915,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1488.5, "x": 1353,
"y": 1101 "y": 1100
}, },
{ {
"x": 1945, "x": 1760,
"y": 1101 "y": 1100
} }
], ],
"animated": false, "animated": false,
@ -954,12 +954,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 1231 "y": 1230
}, },
{ {
"x": 1472.5, "x": 1337,
"y": 1231 "y": 1230
} }
], ],
"animated": false, "animated": false,
@ -993,12 +993,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1361 "y": 1360
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1361 "y": 1360
} }
], ],
"animated": false, "animated": false,
@ -1032,12 +1032,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1491 "y": 1490
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1491 "y": 1490
} }
], ],
"animated": false, "animated": false,
@ -1071,12 +1071,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1621 "y": 1620
}, },
{ {
"x": 1021.5, "x": 919,
"y": 1621 "y": 1620
} }
], ],
"animated": false, "animated": false,
@ -1110,12 +1110,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1751 "y": 1750
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1751 "y": 1750
} }
], ],
"animated": false, "animated": false,
@ -1149,12 +1149,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 95.5, "x": 81,
"y": 1881 "y": 1880
}, },
{ {
"x": 2427.5, "x": 2188.5,
"y": 1881 "y": 1880
} }
], ],
"animated": false, "animated": false,
@ -1188,12 +1188,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 89.5, "x": 75,
"y": 191 "y": 190
}, },
{ {
"x": 89.5, "x": 75,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1227,12 +1227,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 564, "x": 500,
"y": 191 "y": 190
}, },
{ {
"x": 564, "x": 500,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1266,12 +1266,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1027.5, "x": 925,
"y": 191 "y": 190
}, },
{ {
"x": 1027.5, "x": 925,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1305,12 +1305,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1478.5, "x": 1343,
"y": 191 "y": 190
}, },
{ {
"x": 1478.5, "x": 1343,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1344,12 +1344,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1951, "x": 1766,
"y": 191 "y": 190
}, },
{ {
"x": 1951, "x": 1766,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,
@ -1383,12 +1383,12 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2433.5, "x": 2194.5,
"y": 191 "y": 190
}, },
{ {
"x": 2433.5, "x": 2194.5,
"y": 2011 "y": 2010
} }
], ],
"animated": false, "animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 476 KiB

After

Width:  |  Height:  |  Size: 476 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 498 KiB

After

Width:  |  Height:  |  Size: 498 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 498 KiB

After

Width:  |  Height:  |  Size: 498 KiB