Files
JuliaFEM.jl/src/elements
Jukka Aho 6b24ed9d76 refactor: Make Point immutable
Changed Point from 'mutable struct' to 'struct'.

The Dict for fields remains a reference type, so field updates via setindex!
and update! still work correctly. This change improves type stability and
enables better compiler optimizations.

Benefits:
- Better compiler optimizations (immutable types)
- Type stability improvements
- Stack allocation when possible
- No breaking changes (Dict fields still mutable)

Tests: All 157 tests passing
2025-11-09 03:30:29 +02:00
..
2025-11-09 03:30:29 +02:00