// ===========================================================================//	KawakamisFlowerChaos.java	1996 Yushin Hozumi All rights reserved.//								Author:Yushin Hozumi// ===========================================================================package	StudioRAIN.chaos;import StudioRAIN.geometry.*;import StudioRAIN.chaos.*;class FunctionForFlower implements OneParameterFunction{	public float getValue( float inValue ) { return 5.0F / ( 1.0F + inValue * inValue ); }	public String getScript( String inS ) { return "5 / ( 1 + ( " + inS + " ) * ( " + inS + " ) )"; }}public class KawakamisFlowerChaos extends KawakamisChaos{	public KawakamisFlowerChaos( float inA )	{		super( inA, -1.0F, new FunctionForFlower() );	}}