Notes |
|
(0001038)
|
Mathieu Malaterre
|
2004-05-11 17:49
|
|
Attaching dataset to reproduce bug. |
|
|
(0001039)
|
Mathieu Malaterre
|
2004-05-11 18:00
|
|
Including demo code:
#include "vtkPolyDataReader.h"
#include "vtkStripper.h"
#include "vtkPolyData.h"
#include "vtkPolyDataWriter.h"
int main()
{
vtkPolyDataReader *reader = vtkPolyDataReader::New();
reader->SetFileName( "polyline.vtk");
//Forms lines from cutter
vtkStripper* cutStrips = vtkStripper::New();
cutStrips->SetInput(reader->GetOutput());
cutStrips->Update();
//Defines polygons as polyline
vtkPolyData* LinePoly = vtkPolyData::New();
LinePoly->SetPoints((cutStrips->GetOutput())->GetPoints());
LinePoly->SetLines(cutStrips->GetOutput()->GetLines());
//Write PolyData to file
vtkPolyDataWriter* wr = vtkPolyDataWriter::New();
wr->SetFileName("Line4.vtk");
wr->SetInput(LinePoly);
wr->Write();
reader->Delete();
cutStrips->Delete();
LinePoly->Delete();
wr->Delete();
return 0;
}
|
|
|
(0001050)
|
Mathieu Malaterre
|
2004-05-16 16:45
|
|
|
|
(0001227)
|
Goodwin Lawlor
|
2004-06-30 23:54
|
|
I tried out the patch and it works nicely.
A more efficient way would be to traverse the lines before stripping and find the "boundary points"... a line point used by only one line. These boundary points would then be used as starting points for the line stripping. The way vtkStripper is structured at the moment would make implementing this difficult though. I vote for the patch! |
|
|
(0004203)
|
Goodwin Lawlor
|
2006-06-12 05:56
|
|
I've used this patch since mid-2004 without problems... could it be add into CVS? Is there something preventing this?
Thanks |
|
|
(0032628)
|
Matthias Blaicher
|
2014-05-14 06:54
|
|
Hi, I'm seeing the exact same behavior on vtk 5.10.1 on Arch Linux. Is there hope of this issue being resolved inside vtk? |
|
|
(0033489)
|
Will Schroeder
|
2014-10-02 13:18
(edited on: 2014-10-02 13:19) |
|
The documentation has been updated. Pre-defined triangle strips and polylines are not altered nor combined into new strips or polylines. If you wish to strip these use vtkTriangleFilter to fragment the input into triangles
and lines prior to running vtkStripper.
The documentation in the class has been updated.
|
|
|
(0033494)
|
Will Schroeder
|
2014-10-02 13:30
|
|
|
|
(0033495)
|
Will Schroeder
|
2014-10-02 13:34
|
|
Updated documentation. It may be worthwhile writing a new vtkStripper that does a better job of optimizing the creation of strips, and connects existing polylines and/or triangle strips. |
|