Example #1
0
        /***************************************************/
        /**** Public Methods                            ****/
        /***************************************************/

        public static Node Node(Cartesian coordinates, string name = "", Constraint6DOF constraint = null)
        {
            return(new Node
            {
                Coordinates = coordinates.Clone(),
                Name = name,
                Constraint = constraint
            });
        }