From 90703915a1a28d020e6a0f1c294504020a2e3e65 Mon Sep 17 00:00:00 2001 From: tkrisnguyen <79130097+tkrisnguyen@users.noreply.github.com> Date: Mon, 12 Aug 2024 11:10:17 +0700 Subject: [PATCH] Update Nodes.jl --- src/Entities/Nodes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entities/Nodes.jl b/src/Entities/Nodes.jl index 6f421496a..35d905d45 100644 --- a/src/Entities/Nodes.jl +++ b/src/Entities/Nodes.jl @@ -96,7 +96,7 @@ end "2D node constructor with two coordinates." function Node(x₁::T, x₂::T, dofs::Dictionary=Dictionary{Field,Vector{Dof}}()) where {T<:Real} - Node(Point((x₁, x₂)), dofs) + Node(Point(x₁, x₂), dofs) end "3D node constructor with coordinates."