ccmoony commited on
Commit
963e920
·
verified ·
1 Parent(s): 6123dad

Drop 6 null-effect partway DELETE cases (132 -> 126 edits)

Browse files

These six _after_impact cases delete an object after its interaction has finished, so the remaining objects trajectories are identical with and without the edit (measured divergence 0.00 px). The trajectory metric normalises by that divergence, so the ratio divided by tracker noise and produced meaningless values. Removed from the manifest, splits, thumbnails and scenes.

Files changed (29) hide show
  1. README.md +4 -66
  2. benchmark_manifest.json +0 -258
  3. scenes/ball_block/cases/edit_remove_block_after_impact/ground_truth_transforms.json +0 -0
  4. scenes/ball_block/cases/edit_remove_block_after_impact/prompts.json +0 -32
  5. scenes/ball_block/cases/edit_remove_block_after_impact/video.mp4 +0 -3
  6. scenes/ball_box_rebound/cases/edit_remove_target_after_impact/ground_truth_transforms.json +0 -0
  7. scenes/ball_box_rebound/cases/edit_remove_target_after_impact/prompts.json +0 -32
  8. scenes/ball_box_rebound/cases/edit_remove_target_after_impact/video.mp4 +0 -3
  9. scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/ground_truth_transforms.json +0 -0
  10. scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/prompts.json +0 -32
  11. scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/video.mp4 +0 -3
  12. scenes/pool_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json +0 -0
  13. scenes/pool_collision/cases/edit_remove_target_ball_after_impact/prompts.json +0 -32
  14. scenes/pool_collision/cases/edit_remove_target_ball_after_impact/video.mp4 +0 -3
  15. scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json +0 -0
  16. scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/prompts.json +0 -32
  17. scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/video.mp4 +0 -3
  18. scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/ground_truth_transforms.json +0 -0
  19. scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/prompts.json +0 -32
  20. scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/video.mp4 +0 -3
  21. splits/all.txt +0 -6
  22. splits/by_property/presence.txt +0 -6
  23. splits/by_timing/partway.txt +0 -6
  24. thumbnails/ball_block/edit_remove_block_after_impact.jpg +0 -3
  25. thumbnails/ball_box_rebound/edit_remove_target_after_impact.jpg +0 -3
  26. thumbnails/picnic_apple_ball/edit_remove_apple_after_impact.jpg +0 -3
  27. thumbnails/pool_collision/edit_remove_target_ball_after_impact.jpg +0 -3
  28. thumbnails/table_drop_collision/edit_remove_target_ball_after_impact.jpg +0 -3
  29. thumbnails/table_marble_collision/edit_remove_small_marble_after_impact.jpg +0 -3
README.md CHANGED
@@ -1,58 +1,7 @@
1
- ---
2
- pretty_name: PCVE-RigidBench
3
- tags:
4
- - video-editing
5
- - physics
6
- - physical-reasoning
7
- - rigid-body
8
- - benchmark
9
- - video
10
- task_categories:
11
- - video-to-video
12
- language:
13
- - en
14
- - zh
15
- size_categories:
16
- - n<1K
17
- ---
18
 
19
- # PCVE-RigidBench
20
-
21
- **P**hysics-**C**onsistent **V**ideo **E**diting benchmark, **rigid-body** subset:
22
- 20 scenes, 20 source videos, 132 edit tasks. Each task asks a model to re-render
23
- a source video under a changed physical parameter (mass, friction, restitution,
24
- initial velocity, or the presence of an object) and provides the
25
- physically-simulated ground truth to score against.
26
-
27
- Everything is rendered from a PyBullet simulation driving a Blender scene, so
28
- every case ships exact per-frame object trajectories alongside the video.
29
-
30
- ## Scope: rigid bodies only
31
-
32
- All 152 clips are **rigid-body** simulations. Every dynamic object is a rigid
33
- body in PyBullet, and every interaction is a rigid contact parameterised by
34
- mass, friction, rolling friction and restitution. Static scene geometry (floors,
35
- tables, ramps, the rug in `ball_carpet_climb`) participates purely as collision
36
- surfaces with their own friction and restitution -- it is never simulated as a
37
- deformable.
38
-
39
- The benchmark therefore contains **no** deformable, cloth, fluid, granular,
40
- soft-body or articulated/jointed dynamics, and the edit vocabulary is
41
- correspondingly restricted to rigid-body properties. Results here say nothing
42
- about a model's handling of non-rigid physics; that is deliberately out of
43
- scope for this release, and the `RigidBench` name marks it.
44
-
45
- ## Download
46
-
47
- ```python
48
- from huggingface_hub import snapshot_download
49
-
50
- root = snapshot_download(repo_id="ccmoony/PCVE-RigidBench", repo_type="dataset")
51
- ```
52
-
53
- ```bash
54
- hf download ccmoony/PCVE-RigidBench --repo-type dataset --local-dir PCVE-RigidBench
55
- ```
56
 
57
  ## Layout
58
  - `benchmark_manifest.json`: flat index of every source + edit; the
@@ -95,17 +44,6 @@ per-frame object trajectories, or against `edited_video` for pixel /
95
  perceptual metrics.
96
 
97
  ## Counts
98
- - Edits by kind: {'SET': 92, 'DELETE': 33, 'ADD': 7}
99
  - Edits by timing: {'partway': 15, 'whole_clip': 117}
100
  - Edits by property: {'friction': 21, 'initial_velocity': 26, 'mass': 32, 'presence': 40, 'restitution': 13}
101
-
102
- ## Notes
103
- - `ground_truth_transforms.json` is the physics record, not a render log: the
104
- `physics` block carries the simulator settings, per-object parameters and
105
- scene geometry actually used, and `frames` carries the per-frame world
106
- matrices and velocities.
107
- - `benchmark_manifest.json` still carries `benchmark_name: pcve_benchmark_v1`,
108
- the internal build id of this release. It is kept as-is so existing evaluator
109
- code that keys off it keeps working; `PCVE-RigidBench` is the published name.
110
- - Model predictions are **not** part of this release; the repository contains
111
- only the benchmark data.
 
1
+ # pcve_benchmark_v1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
+ Physics-Consistent Video Editing benchmark. 20 scenes,
4
+ 20 source videos, 126 edit tasks.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  ## Layout
7
  - `benchmark_manifest.json`: flat index of every source + edit; the
 
44
  perceptual metrics.
45
 
46
  ## Counts
47
+ - Edits by kind: {'ADD': 7, 'DELETE': 27, 'SET': 92}
48
  - Edits by timing: {'partway': 15, 'whole_clip': 117}
49
  - Edits by property: {'friction': 21, 'initial_velocity': 26, 'mass': 32, 'presence': 40, 'restitution': 13}
 
 
 
 
 
 
 
 
 
 
 
benchmark_manifest.json CHANGED
@@ -1567,49 +1567,6 @@
1567
  "ground_truth": "scenes/ball_block/cases/edit_remove_block/ground_truth_transforms.json",
1568
  "thumbnail": "thumbnails/ball_block/edit_remove_block.jpg"
1569
  },
1570
- {
1571
- "global_id": "ball_block/edit_remove_block_after_impact",
1572
- "scene": "ball_block",
1573
- "case_id": "edit_remove_block_after_impact",
1574
- "source_case_id": "ball_block_baseline",
1575
- "source_video": "scenes/ball_block/cases/ball_block_baseline/video.mp4",
1576
- "edited_video": "scenes/ball_block/cases/edit_remove_block_after_impact/video.mp4",
1577
- "duration_sec": 4.0,
1578
- "prompts": {
1579
- "vague": {
1580
- "zh": "在视频前段,把木块从场景中删除。",
1581
- "en": "Early in the clip, remove the wooden block from the scene."
1582
- },
1583
- "quantitative": {
1584
- "zh": "从第 17 帧开始,把木块从场景中删除。",
1585
- "en": "From frame 17 onwards, remove the wooden block from the scene."
1586
- }
1587
- },
1588
- "edit_dsl": "DELETE wood_block AT FRAME 17",
1589
- "edit_kind": "DELETE",
1590
- "object_id": "wood_block",
1591
- "property": null,
1592
- "outcome_type": "object_removed",
1593
- "applies_from_frame": 17,
1594
- "timing": "partway",
1595
- "physics_diff": {
1596
- "wood_block": {
1597
- "from": "present",
1598
- "to": "removed"
1599
- },
1600
- "timing": {
1601
- "applies_from_frame": 17,
1602
- "total_frames": 96,
1603
- "unedited_frames": [
1604
- 1,
1605
- 16
1606
- ]
1607
- }
1608
- },
1609
- "edit_summary": "Block removed at frame 17, four frames after the ball strikes it at frame 13. Frames 1-16 are the source video frame for frame, impact included: the ball arrives at 4.5 m/s and is left with 0.8, and the block is already 0.40 m along and moving at 2.8 m/s when it disappears. The ball then coasts on at its post-impact speed exactly as in the source. The whole-clip version of the same delete (edit_remove_block) is a different video again: with nothing to hit, the ball never slows and ends 7 m further down the floor.",
1610
- "ground_truth": "scenes/ball_block/cases/edit_remove_block_after_impact/ground_truth_transforms.json",
1611
- "thumbnail": "thumbnails/ball_block/edit_remove_block_after_impact.jpg"
1612
- },
1613
  {
1614
  "global_id": "ball_box_rebound/edit_dead_ball",
1615
  "scene": "ball_box_rebound",
@@ -1850,49 +1807,6 @@
1850
  "ground_truth": "scenes/ball_box_rebound/cases/edit_remove_target/ground_truth_transforms.json",
1851
  "thumbnail": "thumbnails/ball_box_rebound/edit_remove_target.jpg"
1852
  },
1853
- {
1854
- "global_id": "ball_box_rebound/edit_remove_target_after_impact",
1855
- "scene": "ball_box_rebound",
1856
- "case_id": "edit_remove_target_after_impact",
1857
- "source_case_id": "ball_box_rebound_baseline",
1858
- "source_video": "scenes/ball_box_rebound/cases/ball_box_rebound_baseline/video.mp4",
1859
- "edited_video": "scenes/ball_box_rebound/cases/edit_remove_target_after_impact/video.mp4",
1860
- "duration_sec": 4.0,
1861
- "prompts": {
1862
- "vague": {
1863
- "zh": "在视频前段,把小足球从场景中删除。",
1864
- "en": "Early in the clip, remove the little football from the scene."
1865
- },
1866
- "quantitative": {
1867
- "zh": "从第 32 帧开始,把小足球从场景中删除。",
1868
- "en": "From frame 32 onwards, remove the little football from the scene."
1869
- }
1870
- },
1871
- "edit_dsl": "DELETE ball_b AT FRAME 32",
1872
- "edit_kind": "DELETE",
1873
- "object_id": "ball_b",
1874
- "property": null,
1875
- "outcome_type": "object_removed",
1876
- "applies_from_frame": 32,
1877
- "timing": "partway",
1878
- "physics_diff": {
1879
- "ball_b": {
1880
- "from": "present",
1881
- "to": "removed"
1882
- },
1883
- "timing": {
1884
- "applies_from_frame": 32,
1885
- "total_frames": 96,
1886
- "unedited_frames": [
1887
- 1,
1888
- 31
1889
- ]
1890
- }
1891
- },
1892
- "edit_summary": "Football removed at frame 32, eight frames after the star ball reaches it at frame 24. Frames 1-31 are the source video frame for frame: the star ball rebounds off the toy chest at frame 13, runs into the football and is left creeping at 0.07 m/s, and the football has been driven 0.18 m when it disappears. The star ball then settles at (+0.27, +0.62) exactly as in the source. The whole-clip version of the same delete is a different video again: with no football to hit, the star ball keeps 1.0 m/s off the rebound and coasts out to (+0.99, +1.39).",
1893
- "ground_truth": "scenes/ball_box_rebound/cases/edit_remove_target_after_impact/ground_truth_transforms.json",
1894
- "thumbnail": "thumbnails/ball_box_rebound/edit_remove_target_after_impact.jpg"
1895
- },
1896
  {
1897
  "global_id": "ball_carpet_climb/edit_grippy_ball",
1898
  "scene": "ball_carpet_climb",
@@ -4386,49 +4300,6 @@
4386
  "ground_truth": "scenes/picnic_apple_ball/cases/edit_remove_soccer_ball/ground_truth_transforms.json",
4387
  "thumbnail": "thumbnails/picnic_apple_ball/edit_remove_soccer_ball.jpg"
4388
  },
4389
- {
4390
- "global_id": "picnic_apple_ball/edit_remove_apple_after_impact",
4391
- "scene": "picnic_apple_ball",
4392
- "case_id": "edit_remove_apple_after_impact",
4393
- "source_case_id": "picnic_apple_ball_baseline",
4394
- "source_video": "scenes/picnic_apple_ball/cases/picnic_apple_ball_baseline/video.mp4",
4395
- "edited_video": "scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/video.mp4",
4396
- "duration_sec": 4.0,
4397
- "prompts": {
4398
- "vague": {
4399
- "zh": "在视频前段,把苹果从场景中删除。",
4400
- "en": "Early in the clip, remove the apple from the scene."
4401
- },
4402
- "quantitative": {
4403
- "zh": "从第 18 帧开始,把苹果从场景中删除。",
4404
- "en": "From frame 18 onwards, remove the apple from the scene."
4405
- }
4406
- },
4407
- "edit_dsl": "DELETE apple AT FRAME 18",
4408
- "edit_kind": "DELETE",
4409
- "object_id": "apple",
4410
- "property": null,
4411
- "outcome_type": "object_removed",
4412
- "applies_from_frame": 18,
4413
- "timing": "partway",
4414
- "physics_diff": {
4415
- "apple": {
4416
- "from": "present",
4417
- "to": "removed"
4418
- },
4419
- "timing": {
4420
- "applies_from_frame": 18,
4421
- "total_frames": 96,
4422
- "unedited_frames": [
4423
- 1,
4424
- 17
4425
- ]
4426
- }
4427
- },
4428
- "edit_summary": "Apple removed at frame 18, four frames after it reaches the soccer ball at frame 14. Frames 1-17 are the source video frame for frame, impact included: the ball is knocked back to 0.64 m/s and the apple is 0.28 m past its start when it disappears. The ball rolls on to x=-0.54 exactly as in the source, with nothing left on the grass to follow it. The whole-clip version of the same delete is a different video again: with no apple to arrive, the ball never moves at all.",
4429
- "ground_truth": "scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/ground_truth_transforms.json",
4430
- "thumbnail": "thumbnails/picnic_apple_ball/edit_remove_apple_after_impact.jpg"
4431
- },
4432
  {
4433
  "global_id": "pool_collision/edit_heavy_cue_ball",
4434
  "scene": "pool_collision",
@@ -4867,49 +4738,6 @@
4867
  "ground_truth": "scenes/pool_collision/cases/edit_remove_target_ball/ground_truth_transforms.json",
4868
  "thumbnail": "thumbnails/pool_collision/edit_remove_target_ball.jpg"
4869
  },
4870
- {
4871
- "global_id": "pool_collision/edit_remove_target_ball_after_impact",
4872
- "scene": "pool_collision",
4873
- "case_id": "edit_remove_target_ball_after_impact",
4874
- "source_case_id": "pool_collision_baseline",
4875
- "source_video": "scenes/pool_collision/cases/pool_collision_baseline/video.mp4",
4876
- "edited_video": "scenes/pool_collision/cases/edit_remove_target_ball_after_impact/video.mp4",
4877
- "duration_sec": 4.0,
4878
- "prompts": {
4879
- "vague": {
4880
- "zh": "在视频前段,把目标球从场景中删除。",
4881
- "en": "Early in the clip, remove the target ball from the scene."
4882
- },
4883
- "quantitative": {
4884
- "zh": "从第 18 帧开始,把目标球从场景中删除。",
4885
- "en": "From frame 18 onwards, remove the target ball from the scene."
4886
- }
4887
- },
4888
- "edit_dsl": "DELETE target_ball AT FRAME 18",
4889
- "edit_kind": "DELETE",
4890
- "object_id": "target_ball",
4891
- "property": null,
4892
- "outcome_type": "object_removed",
4893
- "applies_from_frame": 18,
4894
- "timing": "partway",
4895
- "physics_diff": {
4896
- "target_ball": {
4897
- "from": "present",
4898
- "to": "removed"
4899
- },
4900
- "timing": {
4901
- "applies_from_frame": 18,
4902
- "total_frames": 96,
4903
- "unedited_frames": [
4904
- 1,
4905
- 17
4906
- ]
4907
- }
4908
- },
4909
- "edit_summary": "Target ball removed at frame 18, five frames after the cue strikes it at frame 13. Frames 1-17 are the source video frame for frame, the impact included: the cue hands its speed over and stops dead at y=-0.10, and the target is already 0.14 m up the table when it disappears. Nothing moves for the rest of the clip. The whole-clip version of the same delete (edit_remove_target_ball) is a different video again: with no target to hit, the cue never stops -- at frame 18 it is at y=+0.08 still doing 0.92 m/s, and it runs on to the far cushion.",
4910
- "ground_truth": "scenes/pool_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json",
4911
- "thumbnail": "thumbnails/pool_collision/edit_remove_target_ball_after_impact.jpg"
4912
- },
4913
  {
4914
  "global_id": "ramp_collision/edit_high_friction_red_stalls",
4915
  "scene": "ramp_collision",
@@ -5353,49 +5181,6 @@
5353
  "ground_truth": "scenes/table_drop_collision/cases/edit_remove_target_ball/ground_truth_transforms.json",
5354
  "thumbnail": "thumbnails/table_drop_collision/edit_remove_target_ball.jpg"
5355
  },
5356
- {
5357
- "global_id": "table_drop_collision/edit_remove_target_ball_after_impact",
5358
- "scene": "table_drop_collision",
5359
- "case_id": "edit_remove_target_ball_after_impact",
5360
- "source_case_id": "table_drop_collision_baseline",
5361
- "source_video": "scenes/table_drop_collision/cases/table_drop_collision_baseline/video.mp4",
5362
- "edited_video": "scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/video.mp4",
5363
- "duration_sec": 4.0,
5364
- "prompts": {
5365
- "vague": {
5366
- "zh": "在视频前段,把旧网球从场景中删除。",
5367
- "en": "Early in the clip, remove the old tennis ball from the scene."
5368
- },
5369
- "quantitative": {
5370
- "zh": "从第 30 帧开始,把旧网球从场景中删除。",
5371
- "en": "From frame 30 onwards, remove the old tennis ball from the scene."
5372
- }
5373
- },
5374
- "edit_dsl": "DELETE target_ball AT FRAME 30",
5375
- "edit_kind": "DELETE",
5376
- "object_id": "target_ball",
5377
- "property": null,
5378
- "outcome_type": "object_removed",
5379
- "applies_from_frame": 30,
5380
- "timing": "partway",
5381
- "physics_diff": {
5382
- "target_ball": {
5383
- "from": "present",
5384
- "to": "removed"
5385
- },
5386
- "timing": {
5387
- "applies_from_frame": 30,
5388
- "total_frames": 96,
5389
- "unedited_frames": [
5390
- 1,
5391
- 29
5392
- ]
5393
- }
5394
- },
5395
- "edit_summary": "Target ball removed at frame 30, eight frames after the rolling ball lands off the table and strikes it at frame 22. Frames 1-29 are the source video frame for frame, impact included: the rolling ball is knocked back from 3.2 m/s to 0.8, and the target has been driven from x=-0.73 to -0.98 when it disappears. The rolling ball then settles at x=-0.42 exactly as in the source. The whole-clip version of the same delete is a different video again: with nothing on the floor to hit, it lands and runs on to x=-0.86.",
5396
- "ground_truth": "scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json",
5397
- "thumbnail": "thumbnails/table_drop_collision/edit_remove_target_ball_after_impact.jpg"
5398
- },
5399
  {
5400
  "global_id": "table_marble_collision/edit_heavy_small_marble",
5401
  "scene": "table_marble_collision",
@@ -5636,49 +5421,6 @@
5636
  "ground_truth": "scenes/table_marble_collision/cases/edit_remove_small_marble/ground_truth_transforms.json",
5637
  "thumbnail": "thumbnails/table_marble_collision/edit_remove_small_marble.jpg"
5638
  },
5639
- {
5640
- "global_id": "table_marble_collision/edit_remove_small_marble_after_impact",
5641
- "scene": "table_marble_collision",
5642
- "case_id": "edit_remove_small_marble_after_impact",
5643
- "source_case_id": "table_marble_collision_baseline",
5644
- "source_video": "scenes/table_marble_collision/cases/table_marble_collision_baseline/video.mp4",
5645
- "edited_video": "scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/video.mp4",
5646
- "duration_sec": 4.0,
5647
- "prompts": {
5648
- "vague": {
5649
- "zh": "在视频前段,把小玻璃球从场景中删除。",
5650
- "en": "Early in the clip, remove the small marble from the scene."
5651
- },
5652
- "quantitative": {
5653
- "zh": "从第 19 帧开始,把小玻璃球从场景中删除。",
5654
- "en": "From frame 19 onwards, remove the small marble from the scene."
5655
- }
5656
- },
5657
- "edit_dsl": "DELETE small_marble AT FRAME 19",
5658
- "edit_kind": "DELETE",
5659
- "object_id": "small_marble",
5660
- "property": null,
5661
- "outcome_type": "object_removed",
5662
- "applies_from_frame": 19,
5663
- "timing": "partway",
5664
- "physics_diff": {
5665
- "small_marble": {
5666
- "from": "present",
5667
- "to": "removed"
5668
- },
5669
- "timing": {
5670
- "applies_from_frame": 19,
5671
- "total_frames": 96,
5672
- "unedited_frames": [
5673
- 1,
5674
- 18
5675
- ]
5676
- }
5677
- },
5678
- "edit_summary": "Small marble removed at frame 19, four frames after the big one strikes it at frame 15. Frames 1-18 are the source video frame for frame, impact included: the big marble arrives at 0.85 m/s and leaves at 0.66, and the small one is 0.22 m along and still rolling when it disappears. The big marble then coasts to rest at x=+0.27 exactly as in the source. The whole-clip version of the same delete is a different video again: with nothing to hit, the big marble keeps its speed and runs on to x=+0.39.",
5679
- "ground_truth": "scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/ground_truth_transforms.json",
5680
- "thumbnail": "thumbnails/table_marble_collision/edit_remove_small_marble_after_impact.jpg"
5681
- },
5682
  {
5683
  "global_id": "tennis_flight/edit_slick_ball",
5684
  "scene": "tennis_flight",
 
1567
  "ground_truth": "scenes/ball_block/cases/edit_remove_block/ground_truth_transforms.json",
1568
  "thumbnail": "thumbnails/ball_block/edit_remove_block.jpg"
1569
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1570
  {
1571
  "global_id": "ball_box_rebound/edit_dead_ball",
1572
  "scene": "ball_box_rebound",
 
1807
  "ground_truth": "scenes/ball_box_rebound/cases/edit_remove_target/ground_truth_transforms.json",
1808
  "thumbnail": "thumbnails/ball_box_rebound/edit_remove_target.jpg"
1809
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1810
  {
1811
  "global_id": "ball_carpet_climb/edit_grippy_ball",
1812
  "scene": "ball_carpet_climb",
 
4300
  "ground_truth": "scenes/picnic_apple_ball/cases/edit_remove_soccer_ball/ground_truth_transforms.json",
4301
  "thumbnail": "thumbnails/picnic_apple_ball/edit_remove_soccer_ball.jpg"
4302
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4303
  {
4304
  "global_id": "pool_collision/edit_heavy_cue_ball",
4305
  "scene": "pool_collision",
 
4738
  "ground_truth": "scenes/pool_collision/cases/edit_remove_target_ball/ground_truth_transforms.json",
4739
  "thumbnail": "thumbnails/pool_collision/edit_remove_target_ball.jpg"
4740
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4741
  {
4742
  "global_id": "ramp_collision/edit_high_friction_red_stalls",
4743
  "scene": "ramp_collision",
 
5181
  "ground_truth": "scenes/table_drop_collision/cases/edit_remove_target_ball/ground_truth_transforms.json",
5182
  "thumbnail": "thumbnails/table_drop_collision/edit_remove_target_ball.jpg"
5183
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5184
  {
5185
  "global_id": "table_marble_collision/edit_heavy_small_marble",
5186
  "scene": "table_marble_collision",
 
5421
  "ground_truth": "scenes/table_marble_collision/cases/edit_remove_small_marble/ground_truth_transforms.json",
5422
  "thumbnail": "thumbnails/table_marble_collision/edit_remove_small_marble.jpg"
5423
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5424
  {
5425
  "global_id": "tennis_flight/edit_slick_ball",
5426
  "scene": "tennis_flight",
scenes/ball_block/cases/edit_remove_block_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/ball_block/cases/edit_remove_block_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_block_after_impact",
4
- "source_case_id": "ball_block_baseline",
5
- "edit_dsl": "DELETE wood_block AT FRAME 17",
6
- "edit_summary": "Block removed at frame 17, four frames after the ball strikes it at frame 13. Frames 1-16 are the source video frame for frame, impact included: the ball arrives at 4.5 m/s and is left with 0.8, and the block is already 0.40 m along and moving at 2.8 m/s when it disappears. The ball then coasts on at its post-impact speed exactly as in the source. The whole-clip version of the same delete (edit_remove_block) is a different video again: with nothing to hit, the ball never slows and ends 7 m further down the floor.",
7
- "applies_from_frame": 17,
8
- "physics_diff": {
9
- "wood_block": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 17,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 16
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把木块从场景中删除。",
25
- "en": "Early in the clip, remove the wooden block from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 17 帧开始,把木块从场景中删除。",
29
- "en": "From frame 17 onwards, remove the wooden block from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/ball_block/cases/edit_remove_block_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:91722bf153a603a8c87098b3ba5d4e402c74061c8476f28433804224f37ee8e7
3
- size 662185
 
 
 
 
scenes/ball_box_rebound/cases/edit_remove_target_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/ball_box_rebound/cases/edit_remove_target_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_target_after_impact",
4
- "source_case_id": "ball_box_rebound_baseline",
5
- "edit_dsl": "DELETE ball_b AT FRAME 32",
6
- "edit_summary": "Football removed at frame 32, eight frames after the star ball reaches it at frame 24. Frames 1-31 are the source video frame for frame: the star ball rebounds off the toy chest at frame 13, runs into the football and is left creeping at 0.07 m/s, and the football has been driven 0.18 m when it disappears. The star ball then settles at (+0.27, +0.62) exactly as in the source. The whole-clip version of the same delete is a different video again: with no football to hit, the star ball keeps 1.0 m/s off the rebound and coasts out to (+0.99, +1.39).",
7
- "applies_from_frame": 32,
8
- "physics_diff": {
9
- "ball_b": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 32,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 31
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把小足球从场景中删除。",
25
- "en": "Early in the clip, remove the little football from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 32 帧开始,把小足球从场景中删除。",
29
- "en": "From frame 32 onwards, remove the little football from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/ball_box_rebound/cases/edit_remove_target_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3cacd3b514c033ac18b34afb4bbf8fe1192092aa43ee994475a25c203be5e887
3
- size 434175
 
 
 
 
scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_apple_after_impact",
4
- "source_case_id": "picnic_apple_ball_baseline",
5
- "edit_dsl": "DELETE apple AT FRAME 18",
6
- "edit_summary": "Apple removed at frame 18, four frames after it reaches the soccer ball at frame 14. Frames 1-17 are the source video frame for frame, impact included: the ball is knocked back to 0.64 m/s and the apple is 0.28 m past its start when it disappears. The ball rolls on to x=-0.54 exactly as in the source, with nothing left on the grass to follow it. The whole-clip version of the same delete is a different video again: with no apple to arrive, the ball never moves at all.",
7
- "applies_from_frame": 18,
8
- "physics_diff": {
9
- "apple": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 18,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 17
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把苹果从场景中删除。",
25
- "en": "Early in the clip, remove the apple from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 18 帧开始,把苹果从场景中删除。",
29
- "en": "From frame 18 onwards, remove the apple from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/picnic_apple_ball/cases/edit_remove_apple_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:87a3f6a0300500f13ba99929b878aaee7b90a55c5f6ebe81aa7d2a962622eeac
3
- size 1411189
 
 
 
 
scenes/pool_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/pool_collision/cases/edit_remove_target_ball_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_target_ball_after_impact",
4
- "source_case_id": "pool_collision_baseline",
5
- "edit_dsl": "DELETE target_ball AT FRAME 18",
6
- "edit_summary": "Target ball removed at frame 18, five frames after the cue strikes it at frame 13. Frames 1-17 are the source video frame for frame, the impact included: the cue hands its speed over and stops dead at y=-0.10, and the target is already 0.14 m up the table when it disappears. Nothing moves for the rest of the clip. The whole-clip version of the same delete (edit_remove_target_ball) is a different video again: with no target to hit, the cue never stops -- at frame 18 it is at y=+0.08 still doing 0.92 m/s, and it runs on to the far cushion.",
7
- "applies_from_frame": 18,
8
- "physics_diff": {
9
- "target_ball": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 18,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 17
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把目标球从场景中删除。",
25
- "en": "Early in the clip, remove the target ball from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 18 帧开始,把目标球从场景中删除。",
29
- "en": "From frame 18 onwards, remove the target ball from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/pool_collision/cases/edit_remove_target_ball_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9b37348710c1b715e239b6c0af2991193c4621dc78c666969305d1701706b3c1
3
- size 417053
 
 
 
 
scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_target_ball_after_impact",
4
- "source_case_id": "table_drop_collision_baseline",
5
- "edit_dsl": "DELETE target_ball AT FRAME 30",
6
- "edit_summary": "Target ball removed at frame 30, eight frames after the rolling ball lands off the table and strikes it at frame 22. Frames 1-29 are the source video frame for frame, impact included: the rolling ball is knocked back from 3.2 m/s to 0.8, and the target has been driven from x=-0.73 to -0.98 when it disappears. The rolling ball then settles at x=-0.42 exactly as in the source. The whole-clip version of the same delete is a different video again: with nothing on the floor to hit, it lands and runs on to x=-0.86.",
7
- "applies_from_frame": 30,
8
- "physics_diff": {
9
- "target_ball": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 30,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 29
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把旧网球从场景中删除。",
25
- "en": "Early in the clip, remove the old tennis ball from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 30 帧开始,把旧网球从场景中删除。",
29
- "en": "From frame 30 onwards, remove the old tennis ball from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/table_drop_collision/cases/edit_remove_target_ball_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9b2aebb5652d213630e7ab0ff2d6a790b15bef7b77e01e02d6e762c108c14f91
3
- size 326827
 
 
 
 
scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/ground_truth_transforms.json DELETED
The diff for this file is too large to render. See raw diff
 
scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/prompts.json DELETED
@@ -1,32 +0,0 @@
1
- {
2
- "schema_version": 2,
3
- "case_id": "edit_remove_small_marble_after_impact",
4
- "source_case_id": "table_marble_collision_baseline",
5
- "edit_dsl": "DELETE small_marble AT FRAME 19",
6
- "edit_summary": "Small marble removed at frame 19, four frames after the big one strikes it at frame 15. Frames 1-18 are the source video frame for frame, impact included: the big marble arrives at 0.85 m/s and leaves at 0.66, and the small one is 0.22 m along and still rolling when it disappears. The big marble then coasts to rest at x=+0.27 exactly as in the source. The whole-clip version of the same delete is a different video again: with nothing to hit, the big marble keeps its speed and runs on to x=+0.39.",
7
- "applies_from_frame": 19,
8
- "physics_diff": {
9
- "small_marble": {
10
- "from": "present",
11
- "to": "removed"
12
- },
13
- "timing": {
14
- "applies_from_frame": 19,
15
- "total_frames": 96,
16
- "unedited_frames": [
17
- 1,
18
- 18
19
- ]
20
- }
21
- },
22
- "prompts": {
23
- "vague": {
24
- "zh": "在视频前段,把小玻璃球从场景中删除。",
25
- "en": "Early in the clip, remove the small marble from the scene."
26
- },
27
- "quantitative": {
28
- "zh": "从第 19 帧开始,把小玻璃球从场景中删除。",
29
- "en": "From frame 19 onwards, remove the small marble from the scene."
30
- }
31
- }
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scenes/table_marble_collision/cases/edit_remove_small_marble_after_impact/video.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:aff263117cef9f37cd32e4fe71d92cd45d5a8eba9cf1910736d154491c2c5a21
3
- size 299531
 
 
 
 
splits/all.txt CHANGED
@@ -14,14 +14,12 @@ ball_block/edit_slow_ball
14
  ball_block/edit_grippy_block
15
  ball_block/edit_bouncy_block
16
  ball_block/edit_remove_block
17
- ball_block/edit_remove_block_after_impact
18
  ball_box_rebound/edit_dead_ball
19
  ball_box_rebound/edit_soft_push
20
  ball_box_rebound/edit_draggy_ball
21
  ball_box_rebound/edit_heavy_target
22
  ball_box_rebound/edit_heavy_ball
23
  ball_box_rebound/edit_remove_target
24
- ball_box_rebound/edit_remove_target_after_impact
25
  ball_carpet_climb/edit_grippy_ball
26
  ball_carpet_climb/edit_slippy_ball
27
  ball_carpet_climb/edit_soft_push
@@ -82,7 +80,6 @@ picnic_apple_ball/edit_grippy_soccer_ball
82
  picnic_apple_ball/edit_heavy_apple
83
  picnic_apple_ball/edit_remove_apple
84
  picnic_apple_ball/edit_remove_soccer_ball
85
- picnic_apple_ball/edit_remove_apple_after_impact
86
  pool_collision/edit_heavy_cue_ball
87
  pool_collision/edit_heavy_target_ball
88
  pool_collision/edit_hard_break
@@ -92,7 +89,6 @@ pool_collision/edit_add_ball_near_cue
92
  pool_collision/edit_add_ball_midway
93
  pool_collision/edit_add_ball_near_target
94
  pool_collision/edit_remove_target_ball
95
- pool_collision/edit_remove_target_ball_after_impact
96
  ramp_collision/edit_high_friction_red_stalls
97
  ramp_collision/edit_remove_blue_marble
98
  ramp_collision/edit_heavy_red_ball
@@ -104,14 +100,12 @@ table_drop_collision/edit_heavy_target_ball
104
  table_drop_collision/edit_soft_push
105
  table_drop_collision/edit_dead_rolling_ball
106
  table_drop_collision/edit_remove_target_ball
107
- table_drop_collision/edit_remove_target_ball_after_impact
108
  table_marble_collision/edit_heavy_small_marble
109
  table_marble_collision/edit_heavy_big_marble
110
  table_marble_collision/edit_matched_pair
111
  table_marble_collision/edit_soft_push
112
  table_marble_collision/edit_dead_small_marble
113
  table_marble_collision/edit_remove_small_marble
114
- table_marble_collision/edit_remove_small_marble_after_impact
115
  tennis_flight/edit_slick_ball
116
  tennis_flight/edit_grippy_ball
117
  tennis_flight/edit_bouncy_ball
 
14
  ball_block/edit_grippy_block
15
  ball_block/edit_bouncy_block
16
  ball_block/edit_remove_block
 
17
  ball_box_rebound/edit_dead_ball
18
  ball_box_rebound/edit_soft_push
19
  ball_box_rebound/edit_draggy_ball
20
  ball_box_rebound/edit_heavy_target
21
  ball_box_rebound/edit_heavy_ball
22
  ball_box_rebound/edit_remove_target
 
23
  ball_carpet_climb/edit_grippy_ball
24
  ball_carpet_climb/edit_slippy_ball
25
  ball_carpet_climb/edit_soft_push
 
80
  picnic_apple_ball/edit_heavy_apple
81
  picnic_apple_ball/edit_remove_apple
82
  picnic_apple_ball/edit_remove_soccer_ball
 
83
  pool_collision/edit_heavy_cue_ball
84
  pool_collision/edit_heavy_target_ball
85
  pool_collision/edit_hard_break
 
89
  pool_collision/edit_add_ball_midway
90
  pool_collision/edit_add_ball_near_target
91
  pool_collision/edit_remove_target_ball
 
92
  ramp_collision/edit_high_friction_red_stalls
93
  ramp_collision/edit_remove_blue_marble
94
  ramp_collision/edit_heavy_red_ball
 
100
  table_drop_collision/edit_soft_push
101
  table_drop_collision/edit_dead_rolling_ball
102
  table_drop_collision/edit_remove_target_ball
 
103
  table_marble_collision/edit_heavy_small_marble
104
  table_marble_collision/edit_heavy_big_marble
105
  table_marble_collision/edit_matched_pair
106
  table_marble_collision/edit_soft_push
107
  table_marble_collision/edit_dead_small_marble
108
  table_marble_collision/edit_remove_small_marble
 
109
  tennis_flight/edit_slick_ball
110
  tennis_flight/edit_grippy_ball
111
  tennis_flight/edit_bouncy_ball
splits/by_property/presence.txt CHANGED
@@ -3,9 +3,7 @@ air_hockey_chain/edit_remove_middle_mallet
3
  air_hockey_chain/edit_remove_last_mallet
4
  air_hockey_chain/edit_add_mallet_last_gap
5
  ball_block/edit_remove_block
6
- ball_block/edit_remove_block_after_impact
7
  ball_box_rebound/edit_remove_target
8
- ball_box_rebound/edit_remove_target_after_impact
9
  curling_collision/edit_add_stone_before_red
10
  curling_collision/edit_add_stone_centre
11
  curling_collision/edit_add_stone_before_yellow
@@ -21,18 +19,14 @@ mahjong_dice/edit_remove_red_die
21
  mahjong_dice/edit_remove_white_die
22
  picnic_apple_ball/edit_remove_apple
23
  picnic_apple_ball/edit_remove_soccer_ball
24
- picnic_apple_ball/edit_remove_apple_after_impact
25
  pool_collision/edit_remove_cue_ball
26
  pool_collision/edit_add_ball_near_cue
27
  pool_collision/edit_add_ball_midway
28
  pool_collision/edit_add_ball_near_target
29
  pool_collision/edit_remove_target_ball
30
- pool_collision/edit_remove_target_ball_after_impact
31
  ramp_collision/edit_remove_blue_marble
32
  table_drop_collision/edit_remove_target_ball
33
- table_drop_collision/edit_remove_target_ball_after_impact
34
  table_marble_collision/edit_remove_small_marble
35
- table_marble_collision/edit_remove_small_marble_after_impact
36
  toy_car_ball/edit_remove_toy_ball
37
  toy_car_ball/edit_remove_toy_ball_after_push
38
  twin_ramp_collision/edit_remove_purple_ball
 
3
  air_hockey_chain/edit_remove_last_mallet
4
  air_hockey_chain/edit_add_mallet_last_gap
5
  ball_block/edit_remove_block
 
6
  ball_box_rebound/edit_remove_target
 
7
  curling_collision/edit_add_stone_before_red
8
  curling_collision/edit_add_stone_centre
9
  curling_collision/edit_add_stone_before_yellow
 
19
  mahjong_dice/edit_remove_white_die
20
  picnic_apple_ball/edit_remove_apple
21
  picnic_apple_ball/edit_remove_soccer_ball
 
22
  pool_collision/edit_remove_cue_ball
23
  pool_collision/edit_add_ball_near_cue
24
  pool_collision/edit_add_ball_midway
25
  pool_collision/edit_add_ball_near_target
26
  pool_collision/edit_remove_target_ball
 
27
  ramp_collision/edit_remove_blue_marble
28
  table_drop_collision/edit_remove_target_ball
 
29
  table_marble_collision/edit_remove_small_marble
 
30
  toy_car_ball/edit_remove_toy_ball
31
  toy_car_ball/edit_remove_toy_ball_after_push
32
  twin_ramp_collision/edit_remove_purple_ball
splits/by_timing/partway.txt CHANGED
@@ -1,15 +1,9 @@
1
  air_hockey_chain/edit_remove_middle_mallet_mid_slide
2
- ball_block/edit_remove_block_after_impact
3
- ball_box_rebound/edit_remove_target_after_impact
4
  bouncing_ball/edit_dead_ball_after_first_bounce
5
  car_gap_jump/edit_grippy_wheels_mid_jump
6
  car_ramp_climb/edit_grippy_wheels_mid_climb
7
  dining_chain/edit_remove_cup_mid_slide
8
  domino_chain/edit_remove_domino_1_mid_fall
9
- picnic_apple_ball/edit_remove_apple_after_impact
10
- pool_collision/edit_remove_target_ball_after_impact
11
  ramp_collision/edit_grippy_red_ball_mid_roll
12
- table_drop_collision/edit_remove_target_ball_after_impact
13
- table_marble_collision/edit_remove_small_marble_after_impact
14
  toy_car_ball/edit_remove_toy_ball_after_push
15
  twin_ramp_collision/edit_remove_purple_ball_after_impact
 
1
  air_hockey_chain/edit_remove_middle_mallet_mid_slide
 
 
2
  bouncing_ball/edit_dead_ball_after_first_bounce
3
  car_gap_jump/edit_grippy_wheels_mid_jump
4
  car_ramp_climb/edit_grippy_wheels_mid_climb
5
  dining_chain/edit_remove_cup_mid_slide
6
  domino_chain/edit_remove_domino_1_mid_fall
 
 
7
  ramp_collision/edit_grippy_red_ball_mid_roll
 
 
8
  toy_car_ball/edit_remove_toy_ball_after_push
9
  twin_ramp_collision/edit_remove_purple_ball_after_impact
thumbnails/ball_block/edit_remove_block_after_impact.jpg DELETED

Git LFS Details

  • SHA256: 9ab309136c01add9e530ee72e4c209cca4d6e3755e34c4878487f407f1cb2e9a
  • Pointer size: 130 Bytes
  • Size of remote file: 53.5 kB
thumbnails/ball_box_rebound/edit_remove_target_after_impact.jpg DELETED

Git LFS Details

  • SHA256: c3c0d65a98737440d1722ee24cf7dc3b2de286e394ea1d6442e97a646826f406
  • Pointer size: 130 Bytes
  • Size of remote file: 42.3 kB
thumbnails/picnic_apple_ball/edit_remove_apple_after_impact.jpg DELETED

Git LFS Details

  • SHA256: e378033c4b2d86918a193159feaf3a4b8fe90e60180cb9365e60f991b6ca2c9c
  • Pointer size: 131 Bytes
  • Size of remote file: 135 kB
thumbnails/pool_collision/edit_remove_target_ball_after_impact.jpg DELETED

Git LFS Details

  • SHA256: da7176bb958de8f6b88ec8dfacbab5b92bd518ec9ec769c0fca30e21ec0efd5d
  • Pointer size: 130 Bytes
  • Size of remote file: 53.6 kB
thumbnails/table_drop_collision/edit_remove_target_ball_after_impact.jpg DELETED

Git LFS Details

  • SHA256: 101bbd175cf0310b5859b717b714b5d252fa06ef28d8d33c5e3bf8be06e339e2
  • Pointer size: 130 Bytes
  • Size of remote file: 44.3 kB
thumbnails/table_marble_collision/edit_remove_small_marble_after_impact.jpg DELETED

Git LFS Details

  • SHA256: 87b99b328603093bb7c14ea09485672762919a8ef617a4c64f3e133b100fce52
  • Pointer size: 130 Bytes
  • Size of remote file: 43.8 kB