Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • VTK VTK
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 832
    • Issues 832
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 238
    • Merge requests 238
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • VTKVTK
  • VTKVTK
  • Issues
  • #405
Closed
Open
Issue created Nov 24, 2003 by Kitware Robot@kwrobotOwner

vtkPointSet::FindCell

This issue was created automatically from an original Mantis Issue. Further discussion may take place here.


Hello,

I use vtkStreamTrace to computes stream lines on many sources (at least 2) using AddSource.

Sometimes streamlines stopped at the interface.

I have change this part of code in vtkPointSet::FindCell an i have better results.

if ( cellIds->GetNumberOfIds() > 0 ) { cellId = cellIds->GetId(0); //arbitrarily use first cell in list

by

int i; for ( i = 0 ; i < cellIds->GetNumberOfIds() ; i++ ) {cellId = cellIds->GetId(i);

CIAOOOO

Assignee
Assign to
Time tracking