Example #1
0
 public void InitLinkCloud(bool forcenew = true)
 {
     if (forcenew)
     {
         linkcloud    = null;
         lastgenmodel = genmodeE.gen_none;
     }
     CreateLinkCloudGos();
 }
Example #2
0
 void initVals()
 {
     Genmode      = genmodeE.gen_b43_1;
     linkRadius   = 0.08f;
     linkNodeSize = 3 * linkRadius;
     mappars      = new MapGenParameters();
     LinkFLoor    = new Range(0, 0);
     nodesvisible = true;
     nodeMoveMode = nodeMoveModeE.move;
 }
Example #3
0
        public void genLinkCloud(genmodeE genmode = genmodeE.gen_circ)
        {
            this.Genmode = genmode;
            linkcloud    = getLinkCloud();
            var mm = new MapMaker(linkcloud, mappars);

            linkcloud.maxRanHeight = LinkFLoor.max;
            linkcloud.minRanHeight = LinkFLoor.min;

            mm.maxVoiceKeywords = this.maxVoiceKeywords;
            mm.AddGraphToLinkCloud(Genmode);
            nVoiceKeywords = mm.nVoiceKeywords;
            lastgenmodel   = Genmode;
        }