// Construtor 3 public Material(Material m) { this.moduloElasticidade = m.moduloElasticidade; this.resistenciaCisalhamento = m.resistenciaCisalhamento; this.resistenciaCompressao = m.resistenciaCompressao; this.resistenciaTracao = m.resistenciaTracao; this.nome = m.nome; this.coeficientes = m.coeficientes; }
// Construtor 1 public Material() { moduloElasticidade = 0; resistenciaCisalhamento = 0; resistenciaCompressao = 0; resistenciaTracao = 0; nome = ""; coeficientes = new Coeficientes(); }
// Construtor 2 public Material(string n, double E, double Ci, double Co, double T, Coeficientes coef) { moduloElasticidade = E; resistenciaCisalhamento = Ci; resistenciaCompressao = Co; resistenciaTracao = T; nome = n; coeficientes = coef; }
// Construtor 3 public Coeficientes(Coeficientes c) { this.kmod1 = c.kmod1; this.kmod2 = c.kmod2; this.kmod3 = c.kmod3; }
public void setCoeficientes(Coeficientes coef) { coeficientes = coef; }