public Branch(Vector start, Vector middleTarget, Vector endTarget, float growthRate) : this() { this.Start = start; this.MiddleTarget = middleTarget; this.Middle = start; this.EndTarget = endTarget; this.End = start; this.GrowthRate = growthRate; }
public ControlPoint(Vector point) { this.point = point; }