From: Daniel Harple Date: 2006-02-20T10:26:12+09:00 Subject: Re: How to pass a group of arguments? On Feb 20, 2006, at 2:18 AM, anne001 wrote: > I want to use a function which expects three arguments > GL.Scale(2.0, 0.4, 1.0); Use the splat operator, "*". GL.Scale(*scale_arr) -- Daniel