Beispiel #1
0
 public BlockInsert(Layer layer, Block masterBlock, BlockInsertVertex vertex)
     : this(layer, masterBlock)
 {
     this.Add(vertex);
 }
Beispiel #2
0
 public BlockInsert(Layer layer, Block masterBlock)
     : base(layer, "BlockInsert")
 {
     this.block = masterBlock;
     this.list  = new List <BlockInsertVertex>();
 }
Beispiel #3
0
 public BlockInsert(Layer layer, Block masterBlock, double x, double y)
     : this(layer, masterBlock)
 {
     this.Add(new BlockInsertVertex(x, y, 0, 1.0, 1.0));
 }