mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-30 16:12:51 +00:00
fix(geometry): update jacobian docstring to use coords field
Update documentation example to use coords field instead of ξ field from QuadraturePoint, matching the API change.
This commit is contained in:
@@ -133,7 +133,7 @@ sum(dN_dx) # ≈ Vec(0.0, 0.0)
|
||||
# Usage in Assembly
|
||||
```julia
|
||||
for ip in integration_points(Gauss{2}(), Triangle())
|
||||
xi = Vec(ip.ξ)
|
||||
xi = Vec(ip.coords)
|
||||
|
||||
# Basis evaluation
|
||||
N = get_basis_functions(Triangle(), Lagrange{Triangle, 1}(), xi)
|
||||
|
||||
Reference in New Issue
Block a user