Dlubal_JavaScript_Library/docs/code/BasicObjects/Node.md at main · mrsafrf/Dlubal_JavaScript_Library · GitHub
Skip to content

Latest commit

 

History

History
120 lines (91 loc) · 4.59 KB

File metadata and controls

120 lines (91 loc) · 4.59 KB
title Node

Node

Node

Kind: global class

new Node(no, coordinate_X, coordinate_Y, coordinate_Z, comment, params)

Create Node

Returns: node

Param Type Description
no int Number of Node
coordinate_X number Coordinate X
coordinate_Y number Coordinate Y
coordinate_Z number Coordinate Z
comment string Comment for the Node
params dictionary Parameters of the Node

node.Standard(no, coordinates, coordinate_system_type, comment, params)

Create Standard node

Kind: instance method of Node

Param Type Description
no int Number of Node
coordinates array Coordinate of node in format [x, y, z]
coordinate_system_type string Type of Coordinate System
comment string Comment for the Node
params dictionary Parameters of the Node

node.BetweenTwoNodes(no, start_node_no, end_node_no, node_reference, parameters, offset_y, offset_z, comment, params)

Create Node between two nodes

Kind: instance method of Node

Param Type Description
no int Number of Node
start_node_no int Number of start node
end_node_no int Number of end node
node_reference string Node Reference
parameters array List of parameters of node
offset_y number Offset in Y direction
offset_z number Offset in Z direction
comment string Comment for the Node
params dictionary Parameters of the Node

node.BetweenTwoPoints(no, start_point, end_point, node_reference, parameters, offset_y, offset_z, comment, params)

Create Node between two points

Kind: instance method of Node

Param Type Description
no int Number of Node
start_point array Coordinate of start point in format [x, y, z]
end_point array Coordinate of end point in format [x, y, z]
node_reference string Node Reference
parameters array List of parameters of node
offset_y number Offset in Y direction
offset_z number Offset in Z direction
comment string Comment for the Node
params dictionary Parameters of the Node

node.OnLine(no, line_number, node_reference, parameters, comment, params)

Create Node On Line

Kind: instance method of Node

Param Type Description
no int Number of the Node
line_number int Number of the Line
node_reference string Node Reference
parameters array List of parameters of node
comment string Comment for the Node
params dictionary Parameters of the Node

node.OnMember(no, member_number, node_reference, parameters, comment, params)

Create Node on Member

Kind: instance method of Node

Param Type Description
no int Number of the Node
member_number int Number of member
node_reference string Node Reference
parameters array List of parameters of node
comment string Comment for the Node
params dictionary Parameters of the Node