How to draw simple 3D points(x,y,z) in java using Java3D API?
I am making a desktop app in netbeans platform using Java technology. I did some image processing, database functionality, image capturing process; but now I want to draw images in 3D view. So, I think first of all I have to make point array of my .tiff 16 bit gray scale image and then use this point array. I tried something and my code is below, but it does not work. So how should I use this point array to draw my image in 3D view? import java.awt.BorderLayout; import com.sun.j3d.utils.universe.*; import java.awt.image.BufferedImage; import javax.media.j3d.*; import javax.media.jai.JAI;