コード例 #1
0
ファイル: SensorDomain.cs プロジェクト: y-hama/Synapse
 public SensorDomain(Location center, Shape.ShapeCore shape, int count, bool alignment)
     : base(CellInfomation.CellType.Sensor, center, shape, count, 0, 0, alignment)
 {
 }
コード例 #2
0
ファイル: RandomPulser.cs プロジェクト: y-hama/Synapse
 public RandomPulser(Location center, Shape.ShapeCore shape, int count)
     : base(center, shape, count, false)
 {
 }
コード例 #3
0
ファイル: TransporterDomain.cs プロジェクト: y-hama/Synapse
 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)
 {
 }