/** * Generates the tree. The following collaboration diagram * shows the recursion trough the make process: * <p> * <img src="doc-files/Tree-2.png" /> * <p> * * @throws Exception */ public void make(Object progress) { this.progress = progress; setupGenProgress(); csparams.prepare(seed); maxPoint = new Vector3(-float.MaxValue, -float.MaxValue, -float.MaxValue); minPoint = new Vector3(float.MaxValue, float.MaxValue, float.MaxValue); Console.WriteLine("Tree species: " + csparams.Species + ", Seed: " + seed); Console.WriteLine("making " + csparams.Species + "(" + seed + ") "); // create the trunk and all its stems and leaves DX_Transformation transf = new DX_Transformation(); DX_Transformation trf; float angle; float dist; CS_LevelParams lpar = csparams.getLevelParams(0); for (int i = 0; i < lpar.nBranches; i++) { trf = trunkDirection(transf, lpar); angle = lpar.var(360); dist = lpar.var(lpar.nBranchDist); trf = trf.translate(new Vector3(dist * (float)Math.Sin(angle), dist * (float)Math.Cos(angle), 0)); CS_StemImpl trunk = new CS_StemImpl(this, null, 0, trf, 0); trunks.Add(trunk); trunk.index = 0; trunk.make(); } // set leafCount and stemCount for the tree if (csparams.Leaves == 0) { setLeafCount(0); } else { CS_LeafCounter leafCounter = new CS_LeafCounter(); traverseTree(leafCounter); setLeafCount(leafCounter.getLeafCount()); } CS_StemCounter stemCounter = new CS_StemCounter(); traverseTree(stemCounter); setStemCount(stemCounter.getStemCount()); // making finished Console.WriteLine("making " + csparams.Species + " Done. "); // TODO //progress.endPhase(); }
/** * Generates the tree. The following collaboration diagram * shows the recursion trough the make process: * <p> * <img src="doc-files/Tree-2.png" /> * <p> * * @throws Exception */ public void make(Object progress) { this.progress = progress; setupGenProgress(); csparams.prepare(seed); maxPoint = new Vector3(-float.MaxValue, -float.MaxValue, -float.MaxValue); minPoint = new Vector3(float.MaxValue, float.MaxValue, float.MaxValue); Console.WriteLine("Tree species: " + csparams.Species + ", Seed: " + seed); Console.WriteLine("making " + csparams.Species + "(" + seed + ") "); // create the trunk and all its stems and leaves DX_Transformation transf = new DX_Transformation(); DX_Transformation trf; float angle; float dist; CS_LevelParams lpar = csparams.getLevelParams(0); for (int i = 0; i < lpar.nBranches; i++) { trf = trunkDirection(transf, lpar); angle = lpar.var(360); dist = lpar.var(lpar.nBranchDist); trf = trf.translate(new Vector3(dist * (float)Math.Sin(angle), dist * (float)Math.Cos(angle), 0)); CS_StemImpl trunk = new CS_StemImpl(this, null, 0, trf, 0); trunks.Add(trunk); trunk.index = 0; trunk.make(); } // set leafCount and stemCount for the tree if (csparams.Leaves == 0) setLeafCount(0); else { CS_LeafCounter leafCounter = new CS_LeafCounter(); traverseTree(leafCounter); setLeafCount(leafCounter.getLeafCount()); } CS_StemCounter stemCounter = new CS_StemCounter(); traverseTree(stemCounter); setStemCount(stemCounter.getStemCount()); // making finished Console.WriteLine("making " + csparams.Species + " Done. "); // TODO //progress.endPhase(); }