SeismicJulia / SeisMakie.jl

MIT License
2 stars 3 forks source link

Add makeAnimation + check colorrange limits #24

Closed firasalchalabi closed 3 months ago

firasalchalabi commented 3 months ago

Added makeAnimtion function and edited seisimageplot to check if the two limits of colorrange are identical.

Code used to test performance of seisimageplot:

function testTime() @time begin for i = 1:1 A = zeros(1000, 1000, 100) rand!(A) makeAnimation("img.mp4", A) end end end