SharpFEGrasshopper.Core.TypeClass.GH_NodeSupport.GH_NodeSupport C# (CSharp) Method

GH_NodeSupport() public method

public GH_NodeSupport ( List positions, bool UX, bool UY, bool UZ, bool RX, bool RY, bool RZ ) : System
positions List
UX bool
UY bool
UZ bool
RX bool
RY bool
RZ bool
return System
        public GH_NodeSupport(List<Point3d> positions, bool UX, bool UY, bool UZ, bool RX, bool RY, bool RZ)
        {
            this.Nodes = new List<GH_Node>();

            foreach( Point3d position in positions) {
              this.Nodes.Add(new GH_Node(position));
            }

            this.UX = UX;
            this.UY = UY;
            this.UZ = UZ;
            this.RX = RX;
            this.RY = RY;
            this.RZ = RZ;
        }

Same methods

GH_NodeSupport::GH_NodeSupport ( Point3d position, bool UX, bool UY, bool UZ, bool RX, bool RY, bool RZ ) : System