Example #1
0
 /// <summary>
 /// コピーコンストラクタ
 /// </summary>
 /// <param name="source"></param>
 public Bubble(Bubble source)
     : base(source.x)
 {
     OnBoundary = source.OnBoundary;
     Diam = source.Diam;
     M = source.M;
     C = source.C;
 }
Example #2
0
 public void AddBubble(Bubble bbl)
 {
     bubbles.Add(bbl);
 }