From 2c7657c48db74de5a512c55165df80b877b38d33 Mon Sep 17 00:00:00 2001 From: "B. Bogart" Date: Mon, 16 Sep 2002 16:36:20 +0000 Subject: Added arguments to "reset" method, allows reseting to particular initial conditions. svn path=/trunk/externals/bbogart/chaos/; revision=128 --- ikeda.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ikeda.c') diff --git a/ikeda.c b/ikeda.c index 4734147..0c2fa21 100644 --- a/ikeda.c +++ b/ikeda.c @@ -61,10 +61,10 @@ static void calculate(ikeda_struct *x) outlet_float(x->y_outlet, (t_float)ly1); } -static void reset(ikeda_struct *x) +static void reset(ikeda_struct *x, t_floatarg lx0, t_floatarg ly0) { - x->lx0 = 0.1; - x->ly0 = 0.1; + x->lx0 = lx0; + x->ly0 = ly0; } static void param(ikeda_struct *x, t_floatarg a, t_floatarg b, t_floatarg c, t_floatarg rho) @@ -108,6 +108,8 @@ void ikeda_setup(void) class_addmethod(ikeda_class, (t_method)reset, gensym("reset"), + A_DEFFLOAT, + A_DEFFLOAT, 0); class_addmethod(ikeda_class, -- cgit v1.2.1