From a92c145e9f676a61b95125f2fffd3f3bbea2c4be Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Thu, 19 Mar 2020 13:58:19 +0100 Subject: [PATCH] Add T-Collide paper to bibliotheca --- bibliotheca.bib | 7 +++++++ bibliotheca.md | 19 ++++++++++++++----- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/bibliotheca.bib b/bibliotheca.bib index 84a2bea..3b7b6b3 100644 --- a/bibliotheca.bib +++ b/bibliotheca.bib @@ -24,3 +24,10 @@ year = "2001", url = "http://roc.cs.berkeley.edu/papers/recursive_restartability.pdf", } + +@article{tcollide, + title = "T-Collide: A Temporal, Real-Time Collision Detection Technique for Bounded Objects", + author = "Erin J. Hastings, Jaruwan Mesit, Ratan K. Guha", + year = "2004", + url = "https://www.cs.ucf.edu/~jmesit/publications/T-Collide%20CGAIDE%202004.pdf", +} diff --git a/bibliotheca.md b/bibliotheca.md index 74a3e29..a5c87f1 100644 --- a/bibliotheca.md +++ b/bibliotheca.md @@ -1,4 +1,5 @@ -# Books, Blogs and Others +Books, Blogs and Others +================================================================================ This is a list of resources I've found on the internet that seemed somewhat interesting. @@ -8,7 +9,8 @@ This is not a list of stuff I've read; most likely, it's things that I want to read at some point or just wanted to save in case I ever need them. -## Books +Books +---------------------------------------- ### [97 Things Every Programmer Should Know](https://97-things-every-x-should-know.gitbooks.io/97-things-every-programmer-should-know/content/en/index.html) @@ -43,14 +45,21 @@ Not much to say about this, everyone should have read SICP. > Most professional programmers that I’ve encountered are not well prepared to tackle algorithm design problems. This is a pity, because the techniques of algorithm design form one of the core practical technologies of computer science. -## Papers +Papers +---------------------------------------- ### [Memory Cache and Lisp](https://people.eecs.berkeley.edu/~fateman/papers/cachelisp.pdf) > Here we concentrate on automatic rearrangement of data, and examine the belief, common in some technical circles, that modern generational copying garbage collectors (GC) will improve data caching by relocating and compressing data, as a matter of normal processing. -## Blogs +### [T-Collide](https://www.cs.ucf.edu/~jmesit/publications/T-Collide%20CGAIDE%202004.pdf) -## Others +> This paper presents T-Collide, a fast, low memoryoverhead, low execution-cost, time-based collision detection scheme. It is intended for real-time systems such as games or simulations to optimize collision detection between large numbers of mobile objects. + +Blogs +---------------------------------------- + +Others +---------------------------------------- ### [How These Things Work](https://reasonablypolymorphic.com/book/preface)