2023-01-03 00:17:18 +03:00
|
|
|
|
using System.Numerics;
|
|
|
|
|
|
|
|
|
|
namespace FractalTreeGtk.Draw
|
|
|
|
|
{
|
|
|
|
|
internal class Branch : CairoObjective.DrawObjects.Line
|
|
|
|
|
{
|
|
|
|
|
public bool left;
|
2023-01-03 18:32:30 +03:00
|
|
|
|
public double degree;
|
|
|
|
|
public Branch(double x1, double y1, double x2, double y2, bool left, double degree) : base(x1, y1, x2, y2)
|
2023-01-03 00:17:18 +03:00
|
|
|
|
{
|
|
|
|
|
this.left = left;
|
2023-01-03 18:32:30 +03:00
|
|
|
|
this.degree = degree;
|
2023-01-03 00:17:18 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|