Exemple #1
0
 public Forma(int indiceForma, double x, double y, double largura, double altura)
 {
     this.indice     = indiceForma;
     this.tipo       = (TipoForma)indiceForma;
     this.xRelCentro = x;
     this.yRelCentro = y;
     this.larguraRel = largura;
     this.alturaRel  = altura;
 }
Exemple #2
0
 public Forma(TipoForma t)
 {
     _tipo = t;
 }