Skip to content

Commit c712f22

Browse files
authored
Update README.md
1 parent 46c76f6 commit c712f22

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

README.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,37 @@ echo json_encode($b->getAllElementsInCircle(new Point(0,0)));
3434
And the output is:
3535

3636
```json
37-
{"100":{"id":100,"p1":{"id":0,"x":-1.5,"y":-1},"p2":{"id":0,"x":-0.5,"y":-0.5}},"200":{"id":200,"p1":{"id":0,"x":1.25,"y":1.5},"p2":{"id":0,"x":0.5,"y":0.75}},"400":{"id":400,"x":0.5,"y":0.5}}
37+
{
38+
"100": {
39+
"id": 100,
40+
"p1": {
41+
"id": 0,
42+
"x": -1.5,
43+
"y": -1
44+
},
45+
"p2": {
46+
"id": 0,
47+
"x": -0.5,
48+
"y": -0.5
49+
}
50+
},
51+
"200": {
52+
"id": 200,
53+
"p1": {
54+
"id": 0,
55+
"x": 1.25,
56+
"y": 1.5
57+
},
58+
"p2": {
59+
"id": 0,
60+
"x": 0.5,
61+
"y": 0.75
62+
}
63+
},
64+
"400": {
65+
"id": 400,
66+
"x": 0.5,
67+
"y": 0.5
68+
}
69+
}
3870
```

0 commit comments

Comments
 (0)