File size: 564 Bytes
eab734a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {
"statement": "Equilateral triangle ABC with side length 1.",
"points": [
{"name": "A", "hint": [0, 0]},
{"name": "B", "hint": [1, 0]},
{"name": "C", "hint": [0.5, 0.866]}
],
"segments": [
{"a": "A", "b": "B", "draw": true},
{"a": "B", "b": "C", "draw": true},
{"a": "C", "b": "A", "draw": true}
],
"constraints": [
{"type": "equal_length", "a1": "A", "a2": "B", "b1": "B", "b2": "C"},
{"type": "equal_length", "a1": "B", "a2": "C", "b1": "C", "b2": "A"},
{"type": "length", "a": "A", "b": "B", "value": 1.0}
]
}
|