Skip to content

GitLab

  • Menu
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 741
    • Issues 741
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 196
    • Merge requests 196
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages & Registries
    • Packages & 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
  • VTK
  • VTKVTK
  • Issues
  • #1590
Closed
Open
Created Feb 09, 2005 by Kitware Robot@kwrobotOwner

Copying input instead of source point data in vtkGlyph3D

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


As far as I understand, for vtkGlyph3D, the point data copied to the output must come from the SOURCE and not the INPUT. This was correct in VTK < 4.5.

In vtkGlyph3D.cxx, line 268 is currently: pd = input->GetPointData(); This should be: pd = source->GetPointData();

And then on line 576: outputPD->CopyData(pd,inPtId,ptIncr+i); Should be: outputPD->CopyData(pd,i,ptIncr+i);

Assignee
Assign to
Time tracking