Examples of CappingOn()


Examples of vtk.vtkTubeFilter.CappingOn()

        vtkTubeFilter tube = new vtkTubeFilter();
        tube.SetVaryRadiusToVaryRadiusByAbsoluteScalar();
        tube.SetInput(cleanFilter.GetOutput());
        tube.SetNumberOfSides(20);
        tube.CappingOn();

        vtkPolyDataMapper mapper = new vtkPolyDataMapper();
        mapper.SetInput(tube.GetOutput());
        mapper.ScalarVisibilityOn();
        mapper.SetScalarModeToUsePointFieldData();
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.