Hi , i would need some help.

I have to bind this c++ code :

struct btOverlapFilterCallback
{
virtual ~btOverlapFilterCallback()
{}
// return true when pairs need collision
virtual bool needBroadphaseCollision(btBroadphaseProxy* 
proxy0,btBroadphaseProxy* proxy1) const = 0;
};


I defined the interface as follow :

interface btOverlapFilterCallback {
  boolean needBroadphaseCollision(btBroadphaseProxy childProxy0, 
btBroadphaseProxy childProxy1);
};

But I dont't manage to use it. (and it does not to work).
I suppose I should be able to have a class on js side 

Regards
Steph

-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/emscripten-discuss/fe019d82-6af4-4aba-a421-e420866b7efen%40googlegroups.com.

Reply via email to