Kind: global class
- Node
- new Node(no, coordinate_X, coordinate_Y, coordinate_Z, comment, params)
- .Standard(no, coordinates, coordinate_system_type, comment, params)
- .BetweenTwoNodes(no, start_node_no, end_node_no, node_reference, parameters, offset_y, offset_z, comment, params)
- .BetweenTwoPoints(no, start_point, end_point, node_reference, parameters, offset_y, offset_z, comment, params)
- .OnLine(no, line_number, node_reference, parameters, comment, params)
- .OnMember(no, member_number, node_reference, parameters, 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 |
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 |
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 |
Create Node on Member
Kind: instance method of Node
