Ejemplo n.º 1
0
        // This method will create and return a function object based upon the input name.
        public IGPFunction GetFunction(string Name)
        {
            switch (Name)
            {
            case ("VoronoiFromLines"):
                IGPFunction gpFunction = new VoronoiFromLinesFunction();
                return(gpFunction);
            }

            return(null);
        }
Ejemplo n.º 2
0
        // This method will create and return a function object based upon the input name.
        public IGPFunction GetFunction(string Name)
        {
            switch (Name)
            {
                case ("VoronoiFromLines"):
                    IGPFunction gpFunction = new VoronoiFromLinesFunction();
                    return gpFunction;
            }

            return null;
        }