FileDocCategorySizeDatePackage
Texture_Info.javaAPI DocExample1897Fri Dec 10 13:25:42 GMT 1999com.tornadolabs.j3dtree

Texture_Info

public class Texture_Info extends ObjectInfo

Fields Summary
private static final int[]
m_kCapabilityArray
Constructors Summary
public Texture_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 += "Texture\r\n";
		
		Texture texture = (Texture) obj;
		
		Color4f color = new Color4f();
		texture.getBoundaryColor( color );
				
		szText += "Boundary Color: " + color + "\r\n";
		szText += "Boundary Mode S: " + texture.getBoundaryModeS() + "\r\n";
		szText += "Boundary Mode T: " + texture.getBoundaryModeT() + "\r\n";
		szText += "Enable: " + texture.getEnable() + "\r\n";
		szText += "Mag Filter: " + texture.getMagFilter() + "\r\n";
		szText += "Min Filter: " + texture.getMinFilter() + "\r\n";
		szText += "MipMap Mode: " + texture.getMipMapMode() + "\r\n";
		
		return szText;