public PedigreeCouple(PedigreeIndividual mother, PedigreeIndividual father, PointWithVelocity point)
 {
     this.mother = mother;
     this.father = father;
     this.point = point;
 }
Example #2
0
 private PointWithVelocity RandomPoint()
 {
     PointWithVelocity randomPoint = new PointWithVelocity();
     randomPoint.x = random.Next(100);
     randomPoint.y = random.Next(100);
     return randomPoint;
 }