Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public ControlPoint(Vector point)
 {
     this.point = point;
 }
Ejemplo n.º 3
0
 public ControlPoint(Vector point)
 {
    this.point = point;
 }