FarseerPhysics.Collision.Shapes.ChainShape.getChildEdge C# (CSharp) Method

getChildEdge() public method

Get a child edge.
public getChildEdge ( int index ) : EdgeShape
index int The index.
return EdgeShape
		public EdgeShape getChildEdge( int index )
		{
			var edgeShape = new EdgeShape();
			getChildEdge( edgeShape, index );
			return edgeShape;
		}

Same methods

ChainShape::getChildEdge ( EdgeShape edge, int index ) : void