You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure why this is happening, but I get no colors shown if I do:
using Displaz
fig = Displaz.newfigure()
clearplot(fig)
plot3d!(fig, rand(3,10), color=[Colors.RGB(1.0,1.0,0.0) for i=1:10])
In contrast to it working if I do
using Displaz
fig = Displaz.newfigure()
plot3d!(fig, rand(3,10), color=[Colors.RGB(1.0,1.0,0.0) for i=1:10])
This may have to do with the shader set by plot3d!, but from what I see it is hardcoded to generic_points.glsl, could it be that it's being overriden by Displaz itself (the binary)?
The text was updated successfully, but these errors were encountered:
I am not sure why this is happening, but I get no colors shown if I do:
In contrast to it working if I do
This may have to do with the shader set by
plot3d!
, but from what I see it is hardcoded togeneric_points.glsl
, could it be that it's being overriden by Displaz itself (the binary)?The text was updated successfully, but these errors were encountered: