summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authortradam <git.tradam.fyi>2021-08-16 11:22:21 -0400
committertradam <git.tradam.fyi>2021-08-16 11:22:21 -0400
commit9659dbbe121aef6fe6e605334830c04d64ab1161 (patch)
tree32031a6f778ba2d700129b2cc737267f2119b04e
parentb4b6817a2a9fce437d83b04eb1bff55bd8c81a90 (diff)
downloadarbitrary-polygon-collision-9659dbbe121aef6fe6e605334830c04d64ab1161.tar.gz
arbitrary-polygon-collision-9659dbbe121aef6fe6e605334830c04d64ab1161.zip
.
-rw-r--r--README.mdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.mdown b/README.mdown
new file mode 100644
index 0000000..3a98c47
--- /dev/null
+++ b/README.mdown
@@ -0,0 +1,3 @@
+# hints and notes for Debugging
+- Shape A for some reason is not understood by the hitbox detection correctly
+As can be seen with the debug lines, one of the lines is drawn diagnal when it instead should of been drawn online one of the edges. The other line has been determined to be of length 0 so it is as if the points are swapped. Despite both shapes using what appear to be essentially the same code only one of the two shapes are in error. If the a and b shapes are swapped then the issue switches shapes(from a to b) so the issue doesnt appear to be with declaring the shapes but rather something in the hitbox logic.