[JAVA3D] Printing a canvas3D object

2003-02-10 Thread Edward Pataky
has anyone figured out how to print the canvas 3d screen in java 1.3.1 ? Please give code snippet...  Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now

[JAVA3D] printing scenegraph

2002-10-30 Thread ajaxinc
How to print the scenegraph?

[JAVA3D] Printing Canvas3D

2002-06-21 Thread Nitin.Jain
Hi, Is there any method of printing Canvas3D. The normal swing printing mechanism doesn't seem to work? Thanks, Nitin AS FAR AS THE LAWS OF MATHEMATICS REFER TO REALITY, THEY ARE NOT CERTAIN; A

[JAVA3D] printing problem 2

2002-03-13 Thread Desiree Hilbring
Hi, the funny thing is, that it actually prints, when I first zoom a little bit, for zooming I am using my own class which is extended from MouseZoom and overwrites transformChanged, there I am resetting my clipping planes, but I do see the objects in my onscreencanvas with the "old" clipping val

[JAVA3D] Printing problems

2002-03-13 Thread Desiree Hilbring
Hi, I try to print my Canvas3D. It used to work a month ago, in the meantime I included changes into the code but, I did not change anything with the printing. All that I get is a blank page. Thanks for your help in advance Desiree Basically I am using the following methods: /** * Pr

[JAVA3D] printing Swing GUI page containing J3D Canvas3D

2002-02-07 Thread Stedum, Harry van
Hi all, I have a problem with printing a Swing gui page (Windows NT4, Java3D 1.2, JDK1.2.2, JRE1.3) containing some Swing components and a panel containing a canvas3D; I had some succes printing the isolated canvas, thanks to the several suggestions/solutions in the java3d-interest archives and b

[JAVA3D] Printing

2001-06-20 Thread ishwari
Hi,   Is there anyway I can get whether a job is printed successfully using PrinterJob?   Regards, ishwari  

Re: [JAVA3D] Printing

2000-11-11 Thread Kevin Rushforth
as 4 separate java files. -- Kevin Rushforth Java 3D Team Sun Microsystems [EMAIL PROTECTED] >Date: Sat, 11 Nov 2000 08:41:50 -0800 >From: Kevin Rushforth <[EMAIL PROTECTED]> >Subject: Re: [JAVA3D] Printing >To: [EMAIL PROTECTED] > >A couple of people report

Re: [JAVA3D] Printing

2000-11-11 Thread Kevin Rushforth
Microsystems > >[EMAIL PROTECTED] > > >>Date: Thu, 9 Nov 2000 12:28:14 -0500 >>From: Joe Boccanfuso <[EMAIL PROTECTED]> >>Subject: [JAVA3D] Printing >>To: [EMAIL PROTECTED] >> >>Hello, >> >>I was just wondering if anyone k

Re: [JAVA3D] Printing

2000-11-09 Thread Kevin Rushforth
in 1.2.1beta2. -- Kevin Rushforth Java 3D Team Sun Microsystems [EMAIL PROTECTED] >Date: Thu, 9 Nov 2000 12:28:14 -0500 >From: Joe Boccanfuso <[EMAIL PROTECTED]> >Subject: [JAVA3D] Printing >To: [EMAIL PROTECTED] > >Hello, > >I was just wondering if a

[JAVA3D] Printing

2000-11-09 Thread Joe Boccanfuso
Hello, I was just wondering if anyone knows of a (good) method to print (to a printer) using Java 3D? The only solution I have been able to come up with is one where I use off-screen rendering to capture the 3D model as a 2D raster image and I send the resulting 2D image to print (via a PrinterJ

Re: [JAVA3D] Printing Capturing Canvas3D

2000-06-27 Thread Dvorak, Daniel J.
I got the PrintCaptureCanvas3D to work saving my canvas to a .jpg, but it only prints blank pages in my application. Of course, the HelloUniverse program prints OK. Don C. says there's some kind of clipping problem when printing. Has anyone figured this out yet? Also, O. Fillon posted an update

Re: [JAVA3D] Printing to a Vector File

2000-02-17 Thread Gregory Bradford
y using j3d. > > -- julian > > -Original Message- > From: Discussion list for Java 3D API > [mailto:[EMAIL PROTECTED]]On Behalf Of Gregory Bradford > Sent: Tuesday, February 15, 2000 8:17 PM > To: [EMAIL PROTECTED] > Subject: [JAVA3D] Printing to a Vector F

Re: [JAVA3D] Printing to a Vector File

2000-02-16 Thread Julian Scheid
nice as simply using j3d. -- julian -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]]On Behalf Of Gregory Bradford Sent: Tuesday, February 15, 2000 8:17 PM To: [EMAIL PROTECTED] Subject: [JAVA3D] Printing to a Vector File Hello everyone, For a current

[JAVA3D] Printing to a Vector File

2000-02-15 Thread Gregory Bradford
Hello everyone, For a current 2d application we have a class called "cgm" which extends the Graphics class in Java. The cgm.java class writes a vector based graphics file (CGM format of course) as it's output. Thus, we can print our 2d application to our cgm object and have an output that is ed

Re: [JAVA3D] AW: [JAVA3D] Printing a Canvas3D?

2000-02-05 Thread The Casteels
Sorry if this is late, attached is the class I use, it was a collaborative effort on this list several months ago. This class allows printing and jpeg capturing of the Canvas3d object. By the way, I'm not very good at documenting things yet. Perhaps one of the more experienced programmers on the

Re: [JAVA3D] AW: [JAVA3D] Printing a Canvas3D?

2000-02-04 Thread Kelvin Chung
y: 3 (Normal) >X-MSMail-Priority: Normal >X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 >Importance: Normal >Date: Thu, 3 Feb 2000 15:38:57 +0100 >From: Julian <[EMAIL PROTECTED]> >Subject: [JAVA3D] AW: [JAVA3D] Printing a Canvas3D? >To: [EMAIL PROTECTED] > &

[JAVA3D] AW: [JAVA3D] Printing a Canvas3D?

2000-02-04 Thread Julian
Hi Vincent, I just came across one of the samples included in the Java3D 1.2 SDK. It is named "OffScreenCanvas3D" and I think it contains everything you need to solve your problem. Have a look into "OffScreenCanvas3D.java" and "PrintFromButton.java" (which does NOT already print the image on your

[JAVA3D] AW: [JAVA3D] Printing a Canvas3D?

2000-02-04 Thread Julian
Vincent, I think you can configure your Canvas3D to render to an offscreen-buffer. You can then render the contents of the offscreen buffer onto a normal (non-3D) Canvas, which in effect replaces your Canvas3D on screen. You should then also be able to print this offscreen buffer using the print

[JAVA3D] Printing a Canvas3D?

2000-02-02 Thread Vincent Erickson
Say it ain't so. I'm attempting to use the Java 2 print classes to output my application's Window to a printer. Everything prints fine except the Canvas3D. It always appears blank, regardless of the contents loaded into the scene. Is there a trick needed here, or am I doing something too weird for

Re: [JAVA3D] Printing Capturing Canvas3D

1999-10-25 Thread Steve Pietrowicz
"Casteel, Don" wrote: > I'm posting this class for everyone who needs to print and/or capture from > their Canvas3D objects. As I was trying to figure out how to do it, I saw > many messages in the interest group archive on the subject asking for help, > I hope this helps. > > First I must acknow

[JAVA3D] Printing Capturing Canvas3D

1999-10-25 Thread Casteel, Don
I'm posting this class for everyone who needs to print and/or capture from their Canvas3D objects. As I was trying to figure out how to do it, I saw many messages in the interest group archive on the subject asking for help, I hope this helps. First I must acknowledge the work done by: Peter