SharpFEGrasshopper.Core.TypeClass.GH_Beam.GH_Beam C# (CSharp) 메소드

GH_Beam() 공개 메소드

public GH_Beam ( Point3d start, Point3d end, GH_CrossSection crossSection, GH_Material material ) : System
start Point3d
end Point3d
crossSection GH_CrossSection
material GH_Material
리턴 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;
        }