1
0
Fork 0

added images to fencer collision project page

This commit is contained in:
Sara Gerretsen 2026-02-11 14:10:25 +01:00
parent 1ec109b1c0
commit adb02b388a
3 changed files with 5 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -12,12 +12,13 @@
</div>
</head>
<body>
<h1>Project Name</h1>
<img src="../assets/fencer.png" style="width:100%">
<h1>Fencer Collision</h1>
<section class="project">
<h2>Info</h2>
<div indented>
<p>Project Type: SDL2 Custom Toy Engine</p>
<p>Project Timeframe: 2023</p>
<p>Project Type: SDL2 Toy Engine</p>
<p>Project Timeframe: November 2023</p>
</div>
<h2>Project Summary</h2>
<p indented>
@ -58,6 +59,7 @@
<a href="https://git.objectionable.solutions/Sara/fencer/src/branch/main/src/physics_world.h">physics world</a>.
Once an object is registered to the physics world it will use the SAT to check for collisions, and finally, that comes to the multi-body iterative collision solver.
</p>
<img src="../assets/fencer-collisions.png" style="width:50%">
<p>
<a href="https://git.objectionable.solutions/Sara/fencer/src/commit/c3f059eeb78db6a4b60ccdbf5928ad32d3ce55b9/src/physics_entity.c#L50">The iterative solver</a>
is implemented in the static functions of the <code>PhysicsEntity</code> typeclass.