/*
//*****************************************************************************
/*
* @(#) AmbientLight_Info.java
*
* Project: Java3dTree
* Client: Java 3D Community
*
* Project Information:
* dselman@tornadolabs.com
* http://www.tornadolabs.com
*
* @author Daniel Selman: dselman@tornadolabs.com
*/
//*****************************************************************************
package com.tornadolabs.j3dtree;
import javax.media.j3d.*;
import javax.vecmath.*;
public class AmbientLight_Info extends Light_Info
{
public AmbientLight_Info()
{
}
public String getInfo( Object obj )
{
String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "AmbientLight\r\n";
return szText;
}
} |