Re: [JAVA3D] Text3D problem

2000-07-17 Thread Ajit Dharmik
EMAIL PROTECTED]> Sent: Monday, July 17, 2000 6:05 PM Subject: Re: [JAVA3D] Text3D problem > What you could do is to attach your text to a scaled TransformGroup like this: > > > > Transform3D scaleFactor = new Transform3D(); > > scaleFactor.setScale(

Re: [JAVA3D] Text3D problem

2000-07-17 Thread François Savard
What you could do is to attach your text to a scaled TransformGroup like this: > Transform3D scaleFactor = new Transform3D(); > scaleFactor.setScale(0.1); > TransformGroup scale = new TransformGroup( scaleFactor ); Font3D font = new Font3D(new Font("Serif", Font.

[JAVA3D] Text3D problem

2000-07-17 Thread Ajit Dharmik
Hello all!   I am using a Text3D object with a font size of 1. However, Java3D displays the text in a size so big, that even a four letter word cannot accomodate itself on my screen.   This is my code. Where am i going wrong???     Font3D font = new Font3D(new Font("Serif", Font.PLAIN, 1)