Skip to content

Commit 27fc130

Browse files
committed
Add presentation videos
1 parent 466b87e commit 27fc130

File tree

6 files changed

+67
-49
lines changed

6 files changed

+67
-49
lines changed

docs/index.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We have three papers on this topic, and the code for the algorithms and the benc
2323

2424
Bolun&nbsp;Wang<sup style="color:gray">\*</sup>, Zachary&nbsp;Ferguson<sup style="color:gray">\*</sup>, Teseo&nbsp;Schneider, Xin&nbsp;Jiang, Marco&nbsp;Attene, Daniele&nbsp;Panozzo <span style="color:gray;text-align:center;font-size:10pt;">(<sup>\*</sup>Joint first authors)</span>
2525

26-
*ACM Transactions on Graphics 2021*
26+
*ACM Transactions on Graphics, 2021*
2727

2828
#### Abstract
2929

@@ -44,7 +44,7 @@ By combining the seminal interval root-finding algorithm introduced by Snyder in
4444

4545
Bolun&nbsp;Wang, Zachary&nbsp;Ferguson, Xin&nbsp;Jiang, Marco &nbsp;Attene, Daniele&nbsp;Panozzo, Teseo&nbsp;Schneider
4646

47-
*Computer Graphics Forum (Eurographics) 2022*
47+
*Computer Graphics Forum (Eurographics), 2022*
4848

4949
#### Abstract
5050

@@ -81,7 +81,14 @@ To foster the adoption and development of future linear CCD algorithms, and to e
8181
* [Tight Inclusion CCD](https://github.com/Continuous-Collision-Detection/Tight-Inclusion)
8282
* [Exact Root Parity CCD](https://github.com/Continuous-Collision-Detection/ExactRootParityCCD)
8383
* [Scalable CCD](https://github.com/Continuous-Collision-Detection/Scalable-CCD)
84+
* [Symbolic CCD](https://github.com/Continuous-Collision-Detection/Symbolic)
8485
* Queries:
8586
* [Sample](https://github.com/Continuous-Collision-Detection/Sample-Queries)
8687
* [Full Dataset](https://archive.nyu.edu/handle/2451/61518)
87-
* [Sample Broad Phase](https://github.com/Continuous-Collision-Detection/Sample-Scalable-CCD-Data)
88+
* [Sample Broad Phase](https://github.com/Continuous-Collision-Detection/Sample-Scalable-CCD-Data)
89+
90+
## Acknowledgments
91+
92+
We thank the NYU IT High Performance Computing for resources, services, and staff expertise.
93+
94+
This work was partially supported by the NSF CAREER award under Grant No. 1652515; the NSF grants OAC-1835712, OIA-1937043, CHS-1908767, and CHS-1901091; National Key Research and Development Program of China No. 2020YFA0713700; Natural Science Foundation of China Grants No. 12171023 and 12001028; NSERC DGECR-2021-00461 and RGPIN-2021-03707; KAUST baseline funding (grant BAS/1/1679-01-01); EU ERC Advanced Grant CHANGE No. 694515 and EU project DIGITbrain/ProMED (952071); a Sloan Fellowship; a gift from Adobe Research; a gift from nTopology; and a gift from Advanced Micro Devices, Inc.

docs/root_parity.md

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
<style>
2-
p {
3-
text-align: justify;
4-
}
5-
</style>
6-
71
<center>
82
<h1>Fast and Exact Root Parity for Continuous Collision Detection</h1>
93

@@ -44,6 +38,20 @@ We introduce the first **exact** root parity counter for continuous collision de
4438

4539
Our method does not have numerical parameters to tune, has a performance comparable to efficient approximate algorithms, and is exact. We test our approach on a large collection of synthetic tests and real simulations, and we demonstrate that it can be easily integrated into existing simulators.
4640

41+
## Fast Forward
42+
43+
<div class="video-wrapper">
44+
<iframe class="youtube" src="https://www.youtube-nocookie.com/embed/3nXvf1nI23M?si=90pItnlHagyD2Qb7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
45+
</div>
46+
47+
## Presentation
48+
49+
* Watch our full Eurographics 2022 presentation on [Bilibili](https://www.bilibili.com/video/BV12U4y1U7nV/) (English)!
50+
51+
<div class="video-wrapper">
52+
<iframe class="youtube" src="https://www.youtube-nocookie.com/embed/HoEbM0fN9Wk?si=Qf76VOh03dV-PkLj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
53+
</div>
54+
4755
## Simulation Videos
4856

4957
<figure>
@@ -63,19 +71,14 @@ Our method does not have numerical parameters to tune, has a performance compara
6371
</figcaption>
6472
</figure>
6573

66-
<!-- ## Source Code and Data -->
67-
## Source Code
74+
## Source Code and Data
6875

69-
<!-- [![Build status](https://github.com/Continuous-Collision-Detection/CCD-Wrapper/workflows/Build/badge.svg)](https://github.com/Continuous-Collision-Detection/CCD-Wrapper/actions?query=workflow%3ABuild+branch%3Amaster+event%3Apush)
70-
[![Nightly build](https://github.com/Continuous-Collision-Detection/CCD-Wrapper/workflows/Nightly/badge.svg)](https://github.com/Continuous-Collision-Detection/CCD-Wrapper/actions?query=workflow%3ANightly+branch%3Amaster+event%3Aschedule) -->
7176
<a href="https://github.com/Continuous-Collision-Detection/ExactRootParityCCD/blob/master/LICENSE">
7277
<img src="https://img.shields.io/github/license/Continuous-Collision-Detection/ExactRootParityCCD.svg?color=blue"></img>
7378
</a>
7479

7580
* [Code](https://github.com/Continuous-Collision-Detection/ExactRootParityCCD)
76-
<!-- * Queries:
77-
* [Sample](https://github.com/Continuous-Collision-Detection/Sample-Queries)
78-
* [Full Dataset](https://archive.nyu.edu/handle/2451/61518) -->
81+
* [Dataset of Rounded CCD Queries](https://archive.nyu.edu/handle/2451/63808)
7982

8083
## BibTex
8184

docs/scalable_ccd.md

+3-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
1-
<style>
2-
p {
3-
text-align: justify;
4-
}
5-
.video-wrapper {
6-
/* border-radius: 10px; */
7-
overflow: hidden;
8-
position: relative;
9-
padding-bottom: 56.25%;
10-
/* 16:9 */
11-
height: 0;
12-
}
13-
.video-wrapper iframe.youtube {
14-
position: absolute;
15-
top: 0;
16-
left: 0;
17-
width: 100%;
18-
height: 100%;
19-
}
20-
</style>
21-
221
<center>
232
<h1>Time of Impact Dataset for Continuous Collision Detection and a Scalable Conservative Algorithm</h1>
243

@@ -66,7 +45,7 @@ To foster the adoption and development of future linear CCD algorithms, and to e
6645
## Video
6746

6847
<div class="video-wrapper">
69-
<iframe class="youtube" src="https://www.youtube.com/embed/ezuC9EisPII?si=3LEO_SeiMi4v7Y14" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen ></iframe>
48+
<iframe class="youtube" src="https://www.youtube-nocookie.com/embed/ezuC9EisPII?si=_oZJwrSBQa5zV6WT" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
7049
</div>
7150

7251
## Source Code and Data
@@ -76,7 +55,7 @@ To foster the adoption and development of future linear CCD algorithms, and to e
7655

7756
* [Our Scalable CCD](https://github.com/Continuous-Collision-Detection/Scalable-CCD)
7857
* [Algorithms and Testing Framework]() (coming soon!)
79-
* Queries:
58+
* Data:
8059
* [Sample](https://github.com/Continuous-Collision-Detection/Sample-Scalable-CCD-Data)
8160
* [Full Dataset]() (coming soon!)
8261

@@ -95,4 +74,4 @@ To foster the adoption and development of future linear CCD algorithms, and to e
9574

9675
## Acknowledgments
9776

98-
This work was funded by the NSF CAREER award under Grant No. 1652515, the NSF grants OAC-1835712, OIA-1937043, CHS-1908767, CHS-1901091, NSERC DGECR-2021-00461 and RGPIN 2021-03707, KAUST baseline funding (grant BAS/1/1679-01-01), by EU project DIGITbrain/ProMED (952071).
77+
We thank the NYU IT High Performance Computing for resources, services, and staff expertise. This work was funded by the NSF CAREER award under Grant No. 1652515, the NSF grants OAC-1835712, OIA-1937043, CHS-1908767, CHS-1901091, NSERC DGECR-2021-00461 and RGPIN 2021-03707, KAUST baseline funding (grant BAS/1/1679-01-01), by EU project DIGITbrain/ProMED (952071).

docs/stylesheets/extra.css

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
p {
2+
text-align: justify;
3+
}
4+
5+
.video-wrapper {
6+
/* border-radius: 10px; */
7+
overflow: hidden;
8+
position: relative;
9+
padding-bottom: 56.25%;
10+
/* 16:9 */
11+
height: 0;
12+
}
13+
14+
.video-wrapper iframe.youtube {
15+
position: absolute;
16+
top: 0;
17+
left: 0;
18+
width: 100%;
19+
height: 100%;
20+
}

docs/tight_inclusion.md

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
<style>
2-
p {
3-
text-align: justify;
4-
}
5-
</style>
6-
71
<center>
82
<h1>A Large Scale Benchmark and an Inclusion-Based Algorithm for Continuous Collision Detection</h1>
93

@@ -48,6 +42,18 @@ We discover that, despite the widespread use of CCD algorithms, existing algorit
4842

4943
By combining the seminal interval root-finding algorithm introduced by Snyder in 1992 with modern predicate design techniques, we propose a simple and efficient CCD algorithm. This algorithm is competitive with state-of-the-art methods in terms of runtime while conservatively reporting the time of impact and allowing an explicit trade-off between runtime efficiency and the number of false positives reported.
5044

45+
## Fast Forward
46+
47+
<div class="video-wrapper">
48+
<iframe class="youtube" src="https://www.youtube-nocookie.com/embed/dvbTGl5Vre8?si=YZgYkF4r9EPGVeFM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
49+
</div>
50+
51+
## Presentation
52+
53+
<div class="video-wrapper">
54+
<iframe class="youtube" src="https://www.youtube-nocookie.com/embed/bwVIPGVvETs?si=WaY01gYqm0DcpT9m" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
55+
</div>
56+
5157
## Video
5258

5359
<figure>
@@ -72,6 +78,7 @@ By combining the seminal interval root-finding algorithm introduced by Snyder in
7278
* [GitHub Organization](https://github.com/Continuous-Collision-Detection)
7379
* [Wrapper and Benchmark](https://github.com/Continuous-Collision-Detection/CCD-Wrapper)
7480
* [Tight-Inclusion (Novel Inclusion-Based CCD)](https://github.com/Continuous-Collision-Detection/Tight-Inclusion)
81+
* [Symbolic CCD](https://github.com/Continuous-Collision-Detection/Symbolic)
7582
* Queries:
7683
* [Sample](https://github.com/Continuous-Collision-Detection/Sample-Queries)
7784
* [Full Dataset](https://archive.nyu.edu/handle/2451/61518)
@@ -94,4 +101,4 @@ By combining the seminal interval root-finding algorithm introduced by Snyder in
94101

95102
## Acknowledgments
96103

97-
This work was partially supported by the NSF CAREER award under Grant No. 1652515, the NSF grants OAC-1835712, OIA-1937043, CHS-1908767, CHS-1901091, National Key Research and Development Program of China No. 2020YFA0713700, EU ERC Advanced Grant CHANGE No. 694515, a Sloan Fellowship, a gift from Adobe Research, a gift from nTopology, and a gift from Advanced Micro Devices, Inc.
104+
We thank the NYU IT High Performance Computing for resources, services, and staff expertise. This work was partially supported by the NSF CAREER award under Grant No. 1652515, the NSF grants OAC-1835712, OIA-1937043, CHS-1908767, CHS-1901091, National Key Research and Development Program of China No. 2020YFA0713700, EU ERC Advanced Grant CHANGE No. 694515, a Sloan Fellowship, a gift from Adobe Research, a gift from nTopology, and a gift from Advanced Micro Devices, Inc.

mkdocs.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ theme:
1616
- media: "(prefers-color-scheme: light)"
1717
scheme: default
1818
primary: "indigo"
19-
accent: "indigo"
19+
accent: "blue"
2020
toggle:
2121
icon: material/weather-sunny
2222
name: Switch to dark mode
2323
- media: "(prefers-color-scheme: dark)"
2424
scheme: slate
2525
primary: "indigo"
26-
accent: "indigo"
26+
accent: "blue"
2727
toggle:
2828
icon: material/weather-night
2929
name: Switch to light mode
@@ -67,6 +67,8 @@ plugins:
6767
- search
6868
extra_javascript:
6969
- "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"
70+
extra_css:
71+
- stylesheets/extra.css
7072
nav:
7173
- Home: index.md
7274
- Tight Inclusion: tight_inclusion.md

0 commit comments

Comments
 (0)