Box2D.Dynamics.Fixture.GetAABB C# (CSharp) Method

GetAABB() public method

Get the fixture's AABB. This AABB may be enlarge and/or stale. If you need a more accurate AABB, compute it using the shape and the body transform.
public GetAABB ( int childIndex ) : AABB
childIndex int
return Box2D.Collision.AABB
        public AABB GetAABB(int childIndex)
        {
            Debug.Assert(childIndex >= 0 && childIndex < ProxyCount);
            return Proxies[childIndex].AABB;
        }