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

GH_NodeSupport() public method

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