File size: 426 Bytes
eab734a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"statement": "Draw triangle ABC.",
"points": [
{"name": "A", "hint": [0, 1]},
{"name": "B", "hint": [-1, 0]},
{"name": "C", "hint": [1, 0]}
],
"segments": [
{"a": "A", "b": "B", "draw": true},
{"a": "B", "b": "C", "draw": true},
{"a": "C", "b": "A", "draw": true}
],
"lines": [],
"circles": [],
"angle_marks": [],
"labels": [],
"constraints": [],
"expected_mode": "schematic"
}
|