FarseerPhysics.Collision.Shapes.ChainShape.getChildEdge C# (CSharp) 메소드

getChildEdge() 공개 메소드

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

Same methods

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