Example #1
0
 internal void Expand(FishingNet net)
 {
     AddFishingNet(net.XNum, net.YNum, net.WidthUnit, net.HeightUnit, net.Thickness);
 }
Example #2
0
 private void CheckValidity(FishingNet net)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public FishingNet Create(int xNum, int yNum, double xLen, double yLen, double thickness)
 {
     instance = new FishingNet(xNum, yNum, xLen, yLen, thickness);
     return instance;
 }