Reputation: 121742
Is there a simple way of rendering to a BufferedImage
in Java3D?
I know you can extend Canvas3D
, but it seems cumbersome if I just want to render directly.
Upvotes: 4
Views: 2247
Reputation: 121742
There seems to be some examples showing how to do this such as PrintCanvas3D.java
and OffScreenTest.java
, both giving examples of off-screen rendering.
Upvotes: 4