Giter VIP home page Giter VIP logo

Comments (1)

djhoese avatar djhoese commented on June 3, 2024

I believe this is expected. You'd have to change the GL drawing state to something that works for your use case, but it may produce other artifacts. What you're describing is blending. You can see the LineVisual uses the "translucent" GL state preset here:

self.set_gl_state('translucent')

The properties used by this "preset" are defined here:

'translucent': dict(
depth_test=True,
cull_face=False,
blend=True,
blend_func=('src_alpha', 'one_minus_src_alpha', 'zero', 'one'),
blend_equation='func_add'),

You can customize this I believe by doing my_visual.set_gl_state(preset="additive") or passing specific property values as keyword arguments to this method. That said, I would have thought translucent would have done what you wanted given the options shown but maybe I'm not thinking about this hard enough. It could also be GPU dependent given you're likely using the "gl" method of drawing the lines. You could try the "agg" drawing method provided by the LineVisual and see if that changes your results.

Let me know what you think and how these goes. Otherwise if @rougier knows this off the top of his head he could maybe answer more concretely.

from vispy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.