Matt Hayes
unread,Oct 13, 2008, 6:14:48 PM10/13/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Sign in to report message as abuse
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to glaze Engine
So, I've been doing as much research as I can on Glaze/Chipmunk and
Box2DFlash/Box2D, and it's kind of starting to make sense a little. I
had a thought though... have done some research into physics for game
prior to AS3, I remember reading a lot about the Verlet integration
method, and how fast/stable it was over time, and how easy to
implement... I get the impression that the main time-saver in these
engines is the contact caching... so first question I guess, is that
true?
I understand also, that Glaze/Chipmunk use a hash table for broad-
phase collision detection by default, I assume this is because it's
the fastest overall, was a lot of testing done, or is it a programming
preference that works? Does Box2D just use the "Brute Force" method?
Would it be possible to vary the integration method... or to create an
engine that used Verlet integration, contact caching, and a hash table
(or quad-tree, or something else even?) for broad phase collisions?
Would this engine then be super fast? Could it also easily deal with
particles?
Maybe Verlet _just_ is for particles, and it's no good here because
the whole thing with contact caching means dealing with impulses, and
therefore velocity _has_ to be a part of the equation... I'll admit
I'm out of my depth, but am I intuiting it correctly?
Thanks in advance,
//Matt Hayes