Skip to content

Commit

Permalink
Merge branch 'ff/attribute-passthrough' of https://github.com/MakieOr…
Browse files Browse the repository at this point in the history
…g/Makie.jl into ff/attribute-passthrough
  • Loading branch information
ffreyer committed Sep 24, 2024
2 parents 4466ea9 + 450358f commit 9400e8d
Show file tree
Hide file tree
Showing 15 changed files with 97 additions and 51 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## [Unreleased]

- Show DataInspector tooltip on NaN values if `nan_color` has been set to other than `:transparent` [#4310](https://github.com/MakieOrg/Makie.jl/pull/4310)
- Fix `linestyle` not being used in `triplot` [#4332](https://github.com/MakieOrg/Makie.jl/pull/4332)
- Fix voxel clipping not being based on voxel centers [#4397](https://github.com/MakieOrg/Makie.jl/pull/4397)

## [0.21.11] - 2024-09-13

Expand All @@ -21,6 +23,7 @@
- `plotfunc()` and `func2type()` support functions ending with `!` [#4275](https://github.com/MakieOrg/Makie.jl/pull/4275).
- Fixed Boundserror in clipped multicolor lines in CairoMakie [#4313](https://github.com/MakieOrg/Makie.jl/pull/4313)
- Fix float precision based assertions error in GLMakie.volume [#4311](https://github.com/MakieOrg/Makie.jl/pull/4311)
- Support images with reversed axes [#4338](https://github.com/MakieOrg/Makie.jl/pull/4338)

## [0.21.9] - 2024-08-27

Expand Down
15 changes: 11 additions & 4 deletions CairoMakie/src/primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -730,14 +730,14 @@ function draw_atomic(scene::Scene, screen::Screen{RT}, @nospecialize(primitive::
image = primitive[3][]
xs, ys = primitive[1][], primitive[2][]
if xs isa Makie.EndPoints
l, r = extrema(xs)
l, r = xs
N = size(image, 1)
xs = range(l, r, length = N+1)
else
xs = regularly_spaced_array_to_range(xs)
end
if ys isa Makie.EndPoints
l, r = extrema(ys)
l, r = ys
N = size(image, 2)
ys = range(l, r, length = N+1)
else
Expand Down Expand Up @@ -1253,7 +1253,14 @@ function draw_atomic(scene::Scene, screen::Screen, @nospecialize(primitive::Maki
pos = Makie.voxel_positions(primitive)
scale = Makie.voxel_size(primitive)
colors = Makie.voxel_colors(primitive)
marker = normal_mesh(Rect3f(Point3f(-0.5), Vec3f(1)))
marker = GeometryBasics.normal_mesh(Rect3f(Point3f(-0.5), Vec3f(1)))

# Face culling
if !isempty(primitive.clip_planes[]) && Makie.is_data_space(primitive.space[])
valid = [is_visible(primitive.clip_planes[], p) for p in pos]
pos = pos[valid]
colors = colors[valid]
end

# For correct z-ordering we need to be in view/camera or screen space
model = copy(primitive.model[])
Expand All @@ -1271,7 +1278,7 @@ function draw_atomic(scene::Scene, screen::Screen, @nospecialize(primitive::Maki
specular = primitive.specular, shininess = primitive.shininess,
faceculling = get(primitive, :faceculling, -10),
transformation = Makie.transformation(primitive),
clip_planes = primitive.clip_planes
clip_planes = Plane3f[]
)

for i in zorder
Expand Down
14 changes: 6 additions & 8 deletions GLMakie/assets/shader/voxel.frag
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,16 @@ vec4 get_color(sampler2D color, Nothing color_map, int id) {

bool is_clipped()
{
float d1, d2;
float d;
// Center of voxel
ivec3 size = ivec3(textureSize(voxel_id, 0).xyz);
vec3 xyz = vec3(ivec3(o_uvw * size));
vec3 xyz = vec3(ivec3(o_uvw * size)) + vec3(0.5);
for (int i = 0; i < _num_clip_planes; i++) {
// distance from clip planes with negative clipped
d1 = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;
d2 = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;
// distance between clip plane and center
d = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;

// both outside - clip everything
if (d1 < 0.0 || d2 < 0.0) {
if (d < 0.0)
return true;
}
}

return false;
Expand Down
4 changes: 2 additions & 2 deletions GLMakie/src/drawing_primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,8 @@ end
function draw_image(screen::Screen, scene::Scene, plot::Union{Heatmap, Image})
return cached_robj!(screen, scene, plot) do gl_attributes
position = lift(plot, plot[1], plot[2]) do x, y
xmin, xmax = extrema(x)
ymin, ymax = extrema(y)
xmin, xmax = x
ymin, ymax = y
rect = Rect2(xmin, ymin, xmax - xmin, ymax - ymin)
return decompose(Point2d, rect)
end
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ FreeTypeAbstraction = "0.10.3"
GeometryBasics = "0.4.11"
GridLayoutBase = "0.11"
ImageBase = "0.1.7"
ImageIO = "0.2, 0.3, 0.4, 0.5, 0.6"
ImageIO = "0.5, 0.6"
InteractiveUtils = "1.0, 1.6"
Interpolations = "0.15.1"
IntervalSets = "0.3, 0.4, 0.5, 0.6, 0.7"
Expand Down
2 changes: 1 addition & 1 deletion ReferenceTests/src/tests/examples2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ end
@reference_test "Triplot after adding points and make sure the representative_point_list is correctly updated" begin
points = [(0.0,0.0),(0.95,0.0),(1.0,1.4),(0.0,1.0)] # not 1 so that we have a unique triangulation
tri = Observable(triangulate(points; delete_ghosts = false))
fig, ax, sc = triplot(tri, show_points = true, markersize = 14, show_ghost_edges = true, recompute_centers = true)
fig, ax, sc = triplot(tri, show_points = true, markersize = 14, show_ghost_edges = true, recompute_centers = true, linestyle = :dash)
for p in [(0.3, 0.5), (-1.5, 2.3), (0.2, 0.2), (0.2, 0.5)]
add_point!(tri[], p)
end
Expand Down
2 changes: 1 addition & 1 deletion ReferenceTests/src/tests/examples3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ end
@reference_test "Clip planes - voxel" begin
f = Figure()
a = LScene(f[1, 1])
a.scene.theme[:clip_planes][] = [Plane3f(Vec3f(-2, -1, -0.5), 0.0), Plane3f(Vec3f(-0.5, -1, -2), 0.0)]
a.scene.theme[:clip_planes][] = [Plane3f(Vec3f(-2, -1, -0.5), 0.1), Plane3f(Vec3f(-0.5, -1, -2), 0.1)]
r = -10:10
p = voxels!(a, [cos(sin(x+y)+z) for x in r, y in r, z in r])
f
Expand Down
28 changes: 28 additions & 0 deletions ReferenceTests/src/tests/primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -818,3 +818,31 @@ end
end
f
end

@reference_test "Reverse image, heatmap and surface axes" begin
img = [2 0 0 3; 0 0 0 0; 1 1 0 0; 1 1 0 4]

f = Figure(size = (600, 400))

for (i, interp) in enumerate((true, false))
for (j, plot_func) in enumerate((
(fp, x, y, cs, interp) -> image(fp, x, y, cs, colormap = :viridis, interpolate = interp),
(fp, x, y, cs, interp) -> heatmap(fp, x, y, cs, colormap = :viridis, interpolate = interp),
(fp, x, y, cs, interp) -> surface(fp, x, y, zeros(size(cs)), color = cs, colormap = :viridis, interpolate = interp, shading = NoShading)
))

gl = GridLayout(f[i, j])

a, p = plot_func(gl[1, 1], 1:4, 1:4, img, interp)
hidedecorations!(a)
a, p = plot_func(gl[2, 1], 1:4, 4..1, img, interp)
hidedecorations!(a)
a, p = plot_func(gl[1, 2], 4:-1:1, 1:4, img, interp)
hidedecorations!(a)
a, p = plot_func(gl[2, 2], 4:-1:1, [4, 3, 2, 1], img, interp)
hidedecorations!(a)
end
end

f
end
15 changes: 6 additions & 9 deletions WGLMakie/assets/voxel.frag
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,15 @@ vec3 blinnphong(vec3 N, vec3 V, vec3 L, vec3 color){

bool is_clipped()
{
float d1, d2;
float d;
// get center pos of this voxel
vec3 size = vec3(textureSize(voxel_id, 0).xyz);
vec3 xyz = vec3(ivec3(o_uvw * size));
vec3 xyz = vec3(ivec3(o_uvw * size)) + vec3(0.5);
for (int i = 0; i < num_clip_planes; i++) {
// distance from clip planes with negative clipped
d1 = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;
d2 = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;

// both outside - clip everything
if (d1 < 0.0 || d2 < 0.0) {
// distance between clip plane and voxel center
d = dot(xyz, clip_planes[i].xyz) - clip_planes[i].w;
if (d < 0.0)
return true;
}
}

return false;
Expand Down
6 changes: 3 additions & 3 deletions WGLMakie/src/imagelike.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ end



xy_convert(x::Makie.EndPoints, n) = LinRange(extrema(x)..., n + 1)
xy_convert(x::Makie.EndPoints, n) = LinRange(x..., n + 1)
xy_convert(x::AbstractArray, n) = x

# TODO, speed up GeometryBasics
Expand Down Expand Up @@ -166,8 +166,8 @@ function limits_to_uvmesh(plot, f32c)
py = lift(identity, plot, py; ignore_equal_values=true)
if px[] isa Makie.EndPoints && py[] isa Makie.EndPoints && Makie.is_identity_transform(t)
rect = lift(plot, px, py) do x, y
xmin, xmax = extrema(x)
ymin, ymax = extrema(y)
xmin, xmax = x
ymin, ymax = y
return Rect2f(xmin, ymin, xmax - xmin, ymax - ymin)
end
ps = lift(rect -> decompose(Point2f, rect), plot, rect)
Expand Down
11 changes: 5 additions & 6 deletions src/conversions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,10 @@ function to_endpoints(x::Tuple{<:Real,<:Real})
T = float_type(x...)
return EndPoints(T.(x))
end
to_endpoints(x::ClosedInterval) = to_endpoints(endpoints(x))
function to_endpoints(x::Union{Interval,AbstractVector,ClosedInterval})
return to_endpoints((minimum(x), maximum(x)))
end
to_endpoints(x::Interval) = to_endpoints(endpoints(x))
to_endpoints(x::EndPoints) = x
to_endpoints(x::AbstractVector) = to_endpoints((first(x), last(x)))
function to_endpoints(x, dim)
# having minimum and maximum here actually invites bugs
x isa AbstractVector && !(x isa EndPoints) && print_range_warning(dim, x)
return to_endpoints(x)
end
Expand Down Expand Up @@ -698,7 +696,8 @@ end
# Helper Functions #
################################################################################

to_linspace(interval, N) = range(minimum(interval), stop = maximum(interval), length = N)
to_linspace(interval::Interval, N) = range(leftendpoint(interval), stop = rightendpoint(interval), length = N)
to_linspace(x, N) = range(first(x), stop = last(x), length = N)

"""
Converts the element array type to `T1` without making a copy if the element type matches
Expand Down
18 changes: 13 additions & 5 deletions src/deprecated.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
###########################################
# v0.20 deprecations:
##
Base.@deprecate_binding DiscreteSurface CellGrid true
Base.@deprecate_binding ContinuousSurface VertexGrid true

function DiscreteSurface(args...; kwargs...)
@warn "Makie.DiscreteSurface() is deprecated, use Makie.CellGrid() instead" maxlog=1
CellGrid(args...; kwargs...)
end

function ContinuousSurface(args...; kwargs...)
@warn "Makie.ContinuousSurface() is deprecated, use Makie.VertexGrid() instead" maxlog=1
VertexGrid(args...; kwargs...)
end

function Base.getproperty(scene::Scene, field::Symbol)
if field === :px_area
Expand All @@ -14,7 +22,7 @@ end

@deprecate pixelarea viewport true

function Combined(args...)
Base.depwarn("Makie.Combined(args...) is deprecated, use Makie.Plot(args...) instead")
Plot(args...)
function Combined(args...; kwargs...)
@warn "Makie.Combined() is deprecated, use Makie.Plot() instead" maxlog=1
Plot(args...; kwargs...)
end
5 changes: 5 additions & 0 deletions test/boundingboxes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ end
@test bb.origin Point3f(0)
@test bb.widths Vec3f(10.0, 10.0, 0)

fig, ax, p = image(1..0, 1:10, rand(10, 10))
bb = boundingbox(p)
@test bb.origin Point3f(0, 1, 0)
@test bb.widths Vec3f(1.0, 9.0, 0)

# text transforms to pixel space atm (TODO)
fig = Figure(size = (400, 400))
ax = Axis(fig[1, 1])
Expand Down
4 changes: 4 additions & 0 deletions test/conversions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,11 @@ end

v1 = collect(1:10)
v2 = collect(1:6)
v3 = reverse(v1)

i1 = 1 .. 10
i2 = 1 .. 6
i3 = 10 .. 1

o3 = Float32.(m3)

Expand All @@ -354,6 +356,8 @@ end
@test convert_arguments(Image, m3) == ((0.0f0, 10.0f0), (0.0f0, 6.0f0), o3)
@test convert_arguments(Image, v1, r2, m3) == ((1.0f0, 10.0f0), (1.0f0, 6.0f0), o3)
@test convert_arguments(Image, i1, v2, m3) == ((1.0f0, 10.0f0), (1.0f0, 6.0f0), o3)
@test convert_arguments(Image, v3, i1, m3) == ((10, 1), (1, 10), o3)
@test convert_arguments(Image, v1, i3, m3) == ((1, 10), (10, 1), o3)
@test convert_arguments(Image, m1, m2, m3) === (m1, m2, m3)
@test convert_arguments(Heatmap, m1, m2) === (m1, m2)
end
Expand Down
19 changes: 8 additions & 11 deletions test/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ macro depwarn_message(expr)
$(esc(expr))
end
if length(logger.logs) == 1
return logger.logs[1].message
logger.logs[1].message
else
return nothing
nothing
end
end
end
Expand All @@ -34,17 +34,14 @@ end
end
@testset "Plot -> Combined" begin
logger = Test.TestLogger()
msg = @depwarn_message Combined
@test occursin("Combined is deprecated", msg)
@test Combined == Plot
msg = @depwarn_message Makie.Combined()
@test occursin("Combined() is deprecated", msg)
end
@testset "Surface Traits" begin
@test DiscreteSurface == CellGrid
@test ContinuousSurface == VertexGrid
msg = @depwarn_message DiscreteSurface()
@test occursin("DiscreteSurface is deprecated", msg)
msg = @depwarn_message ContinuousSurface()
@test occursin("ContinuousSurface is deprecated", msg)
msg = @depwarn_message Makie.DiscreteSurface()
@test occursin("DiscreteSurface() is deprecated", msg)
msg = @depwarn_message Makie.ContinuousSurface()
@test occursin("ContinuousSurface() is deprecated", msg)
end
@testset "AbstractVector ImageLike" begin
msg = @depwarn_message image(1:10, 1..10, zeros(10, 10))
Expand Down

0 comments on commit 9400e8d

Please sign in to comment.