Login  Register

Re: Distorted geometry

Posted by basti on Mar 04, 2024; 2:18pm
URL: https://forum.jogamp.org/Distorted-geometry-tp4043353p4043356.html

Hello Julien,

thanks for your reply.
I tested it with Java3D 1.7.0 (log) and 1.7.1 (log) but still get the same result.

I run it via a batch script:

:: to run it with jre1.8.0_401, which is installed on the os
@echo off
java -Djava.library.path=lib -Dnativewindow.debug=all -Djogl.debug=all -Dnewt.debug=all -jar testwith3cubes.jar
pause
exit

:: to run it with jdk-21.0.2, which i have on a flash drive
@echo off
set dir=D:\testWith3Cubes\v171\
cd "D:\testWith3Cubes\jdk-21.0.2\bin\"
java -version
java --add-opens=java.desktop/sun.awt=ALL-UNNAMED -Djava.library.path=lib -Dnativewindow.debug=all -Djogl.debug=all -Dnewt.debug=all -jar %dir%testwith3cubes.jar
pause
exit