Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.

Commit

Permalink
use stable rand
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed Mar 25, 2021
1 parent 3ed02fe commit 17d20f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ReferenceTests/src/tests/text.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
fig = Figure(resolution = (600, 600))
ax = fig[1, 1] = Axis(fig)
tightlimits!(ax)
values = rand(100)
values = RNG.rand(100)

poly!(ax, [FRect2D(x, y, 1, 1) for x in 1:10 for y in 1:10], color = values,
strokecolor = :black, strokewidth = 1)
Expand Down Expand Up @@ -200,7 +200,7 @@ end


@cell "3D screenspace annotaitons" begin
positions = rand(Point3f0, 10)
positions = RNG.rand(Point3f0, 10)
fig, ax, p = meshscatter(positions, color=:white)
text!(
fill("Annotation", 10),
Expand Down

0 comments on commit 17d20f6

Please sign in to comment.