public sPointSupport DuplicatesPointSupport()
        {
            sPointSupport ns = new sPointSupport();

            ns.location    = this.location;
            ns.supportType = this.supportType;
            if (this.constraints != null)
            {
                ns.constraints = this.constraints.ToArray();
            }
            if (this.reaction_force != null)
            {
                ns.reaction_force = this.reaction_force;
            }
            if (this.reaction_moment != null)
            {
                ns.reaction_moment = this.reaction_moment;
            }
            return(ns);
        }
Exemplo n.º 2
0
 public void UpdatePointElement(sPointSupport sp)
 {
     this.boundaryCondition = sp;
 }