statement-to-tikz / tests /fixtures /equilateral.json
will702's picture
Upload folder using huggingface_hub
eab734a verified
Raw
History Blame Contribute Delete
659 Bytes
{
"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.8]}
],
"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": [
{"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}
],
"expected_mode": "exact"
}