Examples of InsertNextTuple3()


Examples of vtk.vtkUnsignedCharArray.InsertNextTuple3()

            int colorG = (int) tubePosition.g;
            int colorB = (int) tubePosition.b;
            double radius = tubePosition.radius;

            points.InsertNextPoint(x, y, z);
            colorArray.InsertNextTuple3(colorR, colorG, colorB);
            radiusArray.InsertNextValue(radius);
        }

        // add the lastube
        if (points != null) {
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.