Skip to content

Releases: JuliaGeometry/Contour.jl

v0.4.0: fix 0.7 deprecations and drop 0.5 (#40)

03 Aug 16:57
Compare
Choose a tag to compare
* fix 0.7 deprecation warnings

* remove mutability on some wrappers

v0.3.0

04 May 07:34
Compare
Choose a tag to compare

Fix deprecation and drop 0.4 support.

v0.2.0

11 Aug 09:28
Compare
Choose a tag to compare

Remove the old API in favor of the one introduced in v0.1.

v0.1.1

11 Aug 09:27
Compare
Choose a tag to compare

Update to work with Julia 0.5.

v0.1.0

11 Aug 09:26
Compare
Choose a tag to compare

Implements a new API for working with contour levels.

c = contours(xs, ys, zs) # a contour collection with levels selected automatically
for lvl in levels(c)
    l = level(lvl) # the z-value of the current contour level
    for line in lines(lvl) # each contour level might consist of multiple, disjoint paths
       x, y = coordinates(line) # coordinates for the line segment of the current path
       # hypothetical example: plot(x, y; color = l)
    end
end