The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

%{

#include <Box2D/Box2D.h>

%}

%module{Box2D};

%name{Box2D::b2ContactImpulse} class b2Contact
{

%{

float32
b2ContactImpulse::normalImpulses( index )
	int index
	CODE:
		RETVAL = THIS->normalImpulses[index];
	OUTPUT:
		RETVAL

%}

};