Hello.
While testing simple Java3D app (code below) i'm getting green horizontal lines as shown on picture.
Does anybody have an idea what causes that display error (how to solve it)?
Laptop specification:
DELL Precision 7540
NVIDIA Quadro T2000 (latest driver 27.21.14.5257)
Win 10
Code:
import org.jogamp.java3d.utils.universe.SimpleUniverse;
import org.jogamp.java3d.utils.geometry.ColorCube;
import org.jogamp.java3d.BranchGroup;
public class JavaApplication1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.setProperty("sun.awt.noerasebackground", "true");
new JavaApplication1();
}
public JavaApplication1() {
SimpleUniverse universe = new SimpleUniverse();
BranchGroup group = new BranchGroup();
group.addChild(new ColorCube(0.3));
universe.getViewingPlatform().setNominalViewingTransform();
universe.addBranchGraph(group);
}
}