ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: metafun- how to pass array as an argument
@ 2011-01-24 13:33 dalyoung
  0 siblings, 0 replies; 4+ messages in thread
From: dalyoung @ 2011-01-24 13:33 UTC (permalink / raw)
  To: ntg-context

Dear Peter,

Thank you for your help. 
By changing (expr s) to (text s), it works!
I am using ConTeXt Minimal and the luatex version is "This is LuaTeX, Version beta-0.61.0-2010072816" 

Thank you again.

Dalyoung


 
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread
* metafun- how to pass array as an argument
@ 2011-01-24 12:18 dalyoung
  2011-01-24 12:50 ` Peter Rolf
  0 siblings, 1 reply; 4+ messages in thread
From: dalyoung @ 2011-01-24 12:18 UTC (permalink / raw)
  To: ntg-context

Dear all,

I draw a simple figure using the code as below.
In the code, I use "for i = 3,5,0,2,1,7:" in def draw_balls.
However, if I can pass the array "3,5,0,2,1,7" as an argument for def draw_balls (expr n) and call draw_balls (3,5,0,2,1,7), then it can be used for different number of balls and number of boxes.
Is there a way to do that or any suggestions?

Thank you for reading.

Regards,

Dalyoung


\startbuffer[a]
path p;
numeric bwidth, u, lastpoint; 
u :=1cm; 
p := fullcircle scaled .3u;
lastpoint := 0;

def draw_balls = %(expr s)
  draw (0,0) -- (0, u);
  for i=3,5,0,2,1,7:
	for j = 1 upto i:
	draw p shifted (lastpoint+.32*j*u,.3u);
	endfor;
  bwidth := .32i*u+.5u;
  draw (lastpoint,0) -- (lastpoint +bwidth,0) -- (lastpoint +bwidth,u);
  lastpoint := lastpoint+bwidth;
  endfor;
enddef;

draw_balls;

\stopbuffer

\starttext
\processMPbuffer[a]
\stoptext
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-01-24 13:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-24 13:33 metafun- how to pass array as an argument dalyoung
  -- strict thread matches above, loose matches on Subject: below --
2011-01-24 12:18 dalyoung
2011-01-24 12:50 ` Peter Rolf
2011-01-24 13:26   ` Peter Rolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).