Description of GH_CrossSection.
Inheritance: SimpleGooImplementation
Exemplo n.º 1
0
        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;
        }
Exemplo n.º 2
0
        public GH_Beam(Point3d start, Point3d end, GH_CrossSection crossSection, GH_Material material)
        {
            this.Start = start;
            this.End   = end;

            this.CrossSection = crossSection;
            this.Material     = material;
        }
Exemplo n.º 3
0
        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;
        }