mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-17 09:12:09 +00:00
refactor(domains): Remove Vec{3} conversion in update_geometry_cache
- Changed 'ξ = Vec{3}(ip.ξ)' to 'ξ = ip.ξ'
- No conversion needed since ip.ξ is now already Vec{3}
This commit is contained in:
@@ -71,7 +71,7 @@ function update_geometry_cache!(
|
||||
|
||||
@inbounds for ip_idx in 1:nips
|
||||
ip = ips[ip_idx]
|
||||
ξ = Vec{3}(ip.ξ)
|
||||
ξ = ip.ξ
|
||||
|
||||
# Reference gradients
|
||||
dN_dξ = get_basis_derivatives(element_cache.topology, element_cache.basis, ξ)
|
||||
|
||||
Reference in New Issue
Block a user