Package vtk

Examples of vtk.vtkActor.GetProperty()


        mapper.SetScalarModeToUsePointFieldData();
        mapper.SelectColorArray("colors");

        vtkActor actor = new vtkActor();
        actor.SetMapper(mapper);
        actor.GetProperty().SetOpacity(opacity);
        actor.GetProperty().BackfaceCullingOff();
        actor.GetProperty().FrontfaceCullingOff();
        getRenderer().AddActor(actor);
        getRenderer().TwoSidedLightingOn();
        getRenderer().LightFollowCameraOn();
View Full Code Here


        mapper.SelectColorArray("colors");

        vtkActor actor = new vtkActor();
        actor.SetMapper(mapper);
        actor.GetProperty().SetOpacity(opacity);
        actor.GetProperty().BackfaceCullingOff();
        actor.GetProperty().FrontfaceCullingOff();
        getRenderer().AddActor(actor);
        getRenderer().TwoSidedLightingOn();
        getRenderer().LightFollowCameraOn();
    }
View Full Code Here

        vtkActor actor = new vtkActor();
        actor.SetMapper(mapper);
        actor.GetProperty().SetOpacity(opacity);
        actor.GetProperty().BackfaceCullingOff();
        actor.GetProperty().FrontfaceCullingOff();
        getRenderer().AddActor(actor);
        getRenderer().TwoSidedLightingOn();
        getRenderer().LightFollowCameraOn();
    }
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.