Ejemplo n.º 1
0
        public void link_overlap(Edge_Factory ef, Measure m)
        {
            int hi = 0;
            int ti = 0;

            while (hi < vertex_count && ti < m.vertex_count)
            {
                Vertex here  = vertices[hi];
                Vertex there = m.vertices[ti];

                if (here.overlap(there))
                {
                    ef.make_edge(here, there);
                }

                if (here.end() + 0.001 < there.end())
                {
                    hi++;
                }
                else if (there.end() + 0.001 < here.end())
                {
                    ti++;
                }
                else
                {
                    ti++;
                    hi++;
                }
            }
        }
Ejemplo n.º 2
0
        public static void stack(Edge_Factory ef, Measure[] m)
        {
            int[]    vi   = new int[m.Length];
            Vertex[] v    = new Vertex[m.Length];
            int      left = 0;

            for (int i = 0; i < m.Length; i++)
            {
                if (m[i].vertices.Length > 0)
                {
                    v[i] = m[i].vertices[0];
                    left++;
                }
            }

            while (left > 1)
            {
                double earliest  = 1000000.0;
                int    earliesti = -1;

                for (int i = 0; i < m.Length; i++)
                {
                    if (v[i] != null)
                    {
                        bool found = false;
                        for (int j = i + 1; j < m.Length /* && !found */; j++)
                        {
                            if (v[j] != null && v[i].overlap(v[j]))
                            {
                                ef.make_edge(v[i], v[j]);
                                found = true;
                            }
                        }
                        if (v[i].end() < earliest)
                        {
                            earliest  = v[i].end();
                            earliesti = i;
                        }
                    }
                }

                if (m[earliesti].vertices.Length > vi[earliesti] + 2)
                {
                    vi[earliesti]++;
                    v[earliesti] = m[earliesti].vertices[vi[earliesti]];
                }
                else
                {
                    v[earliesti] = null;
                    left--;
                }
            }
        }