LitDev.LDPhysics.GetContacts C# (CSharp) Method

GetContacts() public static method

Get a list of shapes that collided within a distance of a specified contact point.
public static GetContacts ( Primitive posX, Primitive posY, Primitive distance ) : Primitive
posX Primitive /// The X coordinate of a contact position to check. ///
posY Primitive /// The Y coordinate of a contact position to check. ///
distance Primitive /// A maximum distance from the contact point for the contact. ///
return Primitive
        public static Primitive GetContacts(Primitive posX, Primitive posY, Primitive distance)
        {
            return _Engine.getContacts(posX, posY, distance);
        }