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:
Jukka Aho
2025-11-20 17:55:23 +02:00
parent 49f55ca12a
commit 9148ef223b
@@ -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, ξ)