Examples of SetNumberOfComponents()


Examples of vtk.vtkUnsignedCharArray.SetNumberOfComponents()

        // initialize the points array
        points = new vtkPoints();

        // initialize the color array
        colorArray = new vtkUnsignedCharArray();
        colorArray.SetNumberOfComponents(3);
        colorArray.SetName("colors");

        // initialize the radius array
        radiusArray = new vtkFloatArray();
        radiusArray.SetName("radius");
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.