FarseerPhysics.Common.Decomposition.CDT.Delaunay.Sweep.AdvancingFront.FindSearchNode C# (CSharp) Method

FindSearchNode() private method

MM: This seems to be used by LocateNode to guess a position in the implicit linked list of AdvancingFrontNodes near x Removed an overload that depended on this being exact
private FindSearchNode ( double x ) : AdvancingFrontNode
x double
return AdvancingFrontNode
        private AdvancingFrontNode FindSearchNode(double x)
        {
            // TODO: implement BST index
            return Search;
        }