Code Monkey home page Code Monkey logo

Comments (3)

RubendeBruin avatar RubendeBruin commented on July 17, 2024

The cause is that the Point data is updated but the line-data is not.
The following code would update the line-data as well:

# work-around
# (re-create the poly-line)

lines = L.poly.GetLines()
if lines:                                        # are we a lines-type actor
    n_points = L.NPoints()
    n_lines = lines.GetNumberOfCells()
    if n_lines != (n_points-1) :      # has the number of points changed?
        lines = vtk.vtkCellArray()    # Re-create the polyline.
        lines.InsertNextCell(n_points)
        for i in range(n_points):
              lines.InsertCellPoint(i)
        L.poly.SetLines(lines)

I could implement this in the SetPoints method and create a merge-request for this update, but wouldn't is have any side-effects?

from vedo.

marcomusy avatar marcomusy commented on July 17, 2024

Hi Ruben,
thanks for bringing up this issue, as you notice points are added but there is no way to know from inside setPoints() what is the cell connectivity for the point that is being added (either a line or some other polygon with other existing points)... so that would be a "side-effect": that would be only valid for lines.
Probably the easiest way is to recreate the longer line with Line(points).
Another possibility is to create a "line" made of N coincident points and then use setPoints() to modify it.

On the other hand this made me realize that a deletePoint() method might be useful.

Hope this helps.

NB: in Line(points) points can be a long list of point coordinates

from vedo.

RubendeBruin avatar RubendeBruin commented on July 17, 2024

Hi Marco,

thanks for the support.
The workaround works for me. And I do not see any robust modification either at this moment.

Should I close the issue or leave it open?

from vedo.

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.