SharpFEGrasshopper.Core.TypeClass.GH_Beam.GH_Beam C# (CSharp) Méthode

GH_Beam() public méthode

public GH_Beam ( Point3d start, Point3d end, GH_CrossSection crossSection, GH_Material material ) : System
start Point3d
end Point3d
crossSection GH_CrossSection
material GH_Material
Résultat System
        public GH_Beam(Point3d start, Point3d end, GH_CrossSection crossSection, GH_Material material)
        {
            this.Start = new GH_Node(start);
            this.End = new GH_Node(end);

            this.CrossSection = crossSection;
            this.Material = material;
        }