You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Compability with Bridge
function getproperty(X::Trajectory, s::Symbol)
if s == :tt
warn("fieldname `tt` changed to `t` ")
s = :t
elseif s == :yy
warn("fieldname `yy` changed to `x` ")
s = :x
end
(s == :t || s == :x) && return getfield(X, s)
error("getproperty: type Trajectory has no field $s")
end
I am working on a more flexible implementation of
SamplePath
. I hope you appreciate renamingtt
andyy
fieldst
andx
.You can follow design here:
https://github.com/mschauer/Trajectories.jl
The text was updated successfully, but these errors were encountered: