Examples of vtkPolyData


Examples of vtk.vtkPolyData

        cellArray.InsertNextCell(points.GetNumberOfPoints());
        for (int j = 0; j < points.GetNumberOfPoints(); j++) {
            cellArray.InsertCellPoint(j);
        }

        vtkPolyData polyData = new vtkPolyData();
        polyData.SetPoints(points);
        polyData.SetLines(cellArray);
        polyData.GetPointData().AddArray(colorArray);
        polyData.GetPointData().SetScalars(radiusArray);

        vtkCleanPolyData cleanFilter = new vtkCleanPolyData();
        cleanFilter.SetInput(polyData);
        cleanFilter.Update();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.