This commit is contained in:
Pavel-Savely Savianok 2023-01-03 00:40:13 +03:00
parent 1d2645531d
commit 235c4f239a

View File

@ -1,4 +1,5 @@
using System; using System;
using System.Diagnostics;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -36,6 +37,7 @@ namespace FractalTreeGtk.Draw
int x = 0; int x = 0;
for (int i = 0; i < Fractallines[level - 1].Length; i++) for (int i = 0; i < Fractallines[level - 1].Length; i++)
{ {
Trace.WriteLine(level - 1);
if (Fractallines[level - 1][i].left) if (Fractallines[level - 1][i].left)
{ {
Fractallines[level][x] = new Branch( Fractallines[level][x] = new Branch(
@ -66,6 +68,11 @@ namespace FractalTreeGtk.Draw
NextLevel(); NextLevel();
} }
} }
private int Modificator(int x, int level)
{
int count = Convert.ToInt32(Math.Pow(2, level));
return Math.Abs(x - count) + level;
}
//private int SumOfBranches() //private int SumOfBranches()
//{ //{
// double sum = 0; // double sum = 0;