Example #1
0
void b2Triangle::fixDegeneracies()	// implementation not very complete or useful at the moment
{
	if (GetArea() < 0.0001)	/// takes care of sliver type ones and uber tiny ones and reversed ones
	{
		SetUnused();
	}
}
Example #2
0
	virtual void Handled()
	{
		SetUnused();

		Signal::Handled();
	}