예제 #1
0
 public SensorDomain(Location center, Shape.ShapeCore shape, int count, bool alignment)
     : base(CellInfomation.CellType.Sensor, center, shape, count, 0, 0, alignment)
 {
 }
예제 #2
0
 public RandomPulser(Location center, Shape.ShapeCore shape, int count)
     : base(center, shape, count, false)
 {
 }
예제 #3
0
 public TransporterDomain(Location center, Shape.ShapeCore shape, int count, int connectcount, double defaultAxonLength = 0)
     : base(CellInfomation.CellType.Synapse, center, shape, count, connectcount, defaultAxonLength)
 {
 }
예제 #4
0
 public SynapseConnection(Location center, Shape.ShapeCore shape, int count, int connectcount, double defaultAxonLength = 0)
     : base(center, shape, count, connectcount, defaultAxonLength)
 {
 }