FileDocCategorySizeDatePackage
TexCoordGeneration_Info.javaAPI DocExample1920Fri Dec 10 13:26:40 GMT 1999com.tornadolabs.j3dtree

TexCoordGeneration_Info

public class TexCoordGeneration_Info extends ObjectInfo

Fields Summary
private static final int[]
m_kCapabilityArray
Constructors Summary
public TexCoordGeneration_Info()


	 
	
	
Methods Summary
public int[]getCapabilityBits()

		return createCompoundArray( m_kCapabilityArray, super.getCapabilityBits() );
	
java.util.EnumerationgetChildren(java.lang.Object obj)

		return super.getChildren( obj );
	
public java.lang.StringgetInfo(java.lang.Object obj)

		String szText = super.getInfo( obj );

		szText = insertSectionBreak( szText );
		szText += "TexCoordGeneration\r\n";
		
		TexCoordGeneration texCoordGen = (TexCoordGeneration) obj;
				
		szText += "Enable: " + texCoordGen.getEnable() + "\r\n";
		szText += "Format: " + texCoordGen.getFormat() + "\r\n";
		szText += "Gen Mode: " + texCoordGen.getGenMode() + "\r\n";
		
		Vector4f vector = new Vector4f();
		
		texCoordGen.getPlaneR( vector );
		szText += "Plane R: " + vector + "\r\n";
		
		texCoordGen.getPlaneS( vector );
		szText += "Plane S: " + vector + "\r\n";

		texCoordGen.getPlaneT( vector );
		szText += "Plane T: " + vector + "\r\n";

		return szText;