예제 #1
0
        public List <List <Vector> > system_config(int W, int H,
                                                   Graph <Object> G,
                                                   out List <Vector> config,
                                                   int root = -1, int p_root = -1,
                                                   List <Vector> initial_config = null)
        {
            Radial r = new Radial(G, W, H);

            List <List <Vector> > X = new List <List <Vector> >();

            config = r.system_config(root, p_root);
            X.Add(config);

            return(X);
        }
예제 #2
0
파일: Radial.cs 프로젝트: wtf42/VSGraphVis
        public List<List<Vector>> system_config(int W, int H,
                                         Graph<Object> G,
                                         out List<Vector> config,
                                         int root = -1, int p_root = -1,
                                         List<Vector> initial_config = null)
        {
            Radial r = new Radial(G, W, H);

            List<List<Vector>> X = new List<List<Vector>>();

            config = r.system_config(root, p_root);
            X.Add(config);

            return X;
        }