Hi!
So I am trying to create an instance of a structure:
struct keypoint
x
y
scale
angle
Vector{Any}(VecLength)
end
Now I know the values of all the fields except the last one. I need to initialize the instance of the structure with the known values but for the last field I have to call another function where the data to be generated and then stored in the last field of the instance. Is there a way to get this done in Julia?
I am referring to the tutorials here and here but I guess in both places all the fields of the instance have been initialized at one go.
Thanks!