# Third-party notices

This project ports and builds on the following software. Their licences require the notices
below to accompany copies or substantial portions of it.

## avbd-demo2d and avbd-demo3d (Chris Giles)

<https://github.com/savant117/avbd-demo2d>, <https://github.com/savant117/avbd-demo3d>: the
reference C++ implementations of Augmented Vertex Block Descent. `src/avbd2d/ref/` and
`src/avbd3d/ref/` are TypeScript ports of their solvers, collision and scenes, and the GPU
solvers follow the same formulation. `tools/cpp-oracle` compiles the unmodified sources, fetched
into the git-ignored `reference/` directory, to test the ports against.

Repository licence:

```
MIT License

Copyright (c) 2025 Chris Giles

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

Source file notice (avbd-demo2d, © 2025; avbd-demo3d, © 2026):

```
Copyright (c) 2025 Chris Giles
Copyright (c) 2026 Chris Giles

Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies.
Chris Giles makes no representations about the suitability
of this software for any purpose.
It is provided "as is" without express or implied warranty.
```

## box2d-lite (Erin Catto)

<https://github.com/erincatto/box2d-lite>: avbd-demo2d's box-box collision was copied and
modified from it, and `src/avbd2d/ref/collide.ts` (with the SoA and GPU versions derived from
it) ports that code.

```
MIT License

Copyright (c) 2019 Erin Catto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

## three.js

<https://threejs.org>: rendering, bundled into the demo pages.

```
The MIT License

Copyright © 2010-2026 three.js authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

## The paper

Chris Giles, Elie Diaz, Cem Yuksel. *Augmented Vertex Block Descent.* ACM Transactions on
Graphics 44(4), Article 90 (SIGGRAPH 2025). <https://doi.org/10.1145/3731195>. The paper is
published under the Creative Commons Attribution 4.0 International License; this project
implements its method and compares against the times it reports, but reproduces none of its
text or figures.
