Delaunay.BitmapData.dispose C# (CSharp) Method

dispose() public method

public dispose ( ) : void
return void
        public void dispose()
        {
            throw new NotImplementedException();
        }

Usage Example

Example #1
0
        static bool MyTest(Edge edge, int index, List <Edge> vector)
        {
            BitmapData delaunayLineBmp = edge.MakeDelaunayLineBmp();
            bool       notIntersecting = !(_keepOutMask.hitTest(zeroVector2, 1, delaunayLineBmp, zeroVector2, 1));

            delaunayLineBmp.dispose();
            return(notIntersecting);
        }
All Usage Examples Of Delaunay.BitmapData::dispose