Canguro.Model.Section.ShellSection.ShellSection C# (CSharp) Method

ShellSection() public method

public ShellSection ( string name, string shape, Material material, float thicknessMembrane, float thicknessBending, ShellType type, float materialAngle, ShellDesignParams designParams ) : System
name string
shape string
material Material
thicknessMembrane float
thicknessBending float
type ShellType
materialAngle float
designParams ShellDesignParams
return System
        public ShellSection(string name, string shape, Material.Material material, float thicknessMembrane, float thicknessBending, ShellType type, float materialAngle, ShellDesignParams designParams)
            : base(name, shape, material)
        {
            this.thicknessBending = thicknessBending;
            this.thicknessMembrane = thicknessMembrane;
            this.shellType = type;
            this.materialAngle = materialAngle;

            if (designParams != null)
                this.designParams = designParams;
            else
                this.designParams = new ShellDesignParams();
        }
ShellSection