ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Problem with show command in MetaFun
@ 2021-01-07 15:11 Keith McKay
  2021-01-07 15:35 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Keith McKay @ 2021-01-07 15:11 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 619 bytes --]

In the MWE below I would expect the "show" command to print the value of 
p in the console output (I use Texworks), however this does not seem to 
be happening. I haven't used "show" in MetaFun for a while, am I 
implementing it correctly?

Best Wishes

Keith McKay

%%%%%%%% MWE %%%%%%%%%

\setuppapersize[A4, portrait]

\starttext

\startMPpage

StartPage;

width := PaperWidth ; height := PaperHeight ; unit := cm ;

numeric p;

p := 0;

for q = 0 step 1 until 10:

show p;

p := p + 1;

fill fullcircle xyscaled(3cm,4cm) shifted ((p +2)*cm, (p + 2)*cm) 
withcolor red ;

endfor;

StopPage;

\stopMPpage

\stoptext


[-- Attachment #1.2: Type: text/html, Size: 2863 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Problem with show command in MetaFun
  2021-01-07 15:11 Problem with show command in MetaFun Keith McKay
@ 2021-01-07 15:35 ` Hans Hagen
  2021-01-07 15:41   ` Keith McKay
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2021-01-07 15:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Keith McKay

On 1/7/2021 4:11 PM, Keith McKay wrote:
> In the MWE below I would expect the "show" command to print the value of 
> p in the console output (I use Texworks), however this does not seem to 
> be happening. I haven't used "show" in MetaFun for a while, am I 
> implementing it correctly?
> 
> Best Wishes
> 
> Keith McKay
> 
> %%%%%%%% MWE %%%%%%%%%
> 
> \setuppapersize[A4, portrait]
> 
> \starttext
> 
> \startMPpage
> 
> StartPage;
> 
> width := PaperWidth ; height := PaperHeight ; unit := cm ;
> 
> numeric p;
> 
> p := 0;
> 
> for q = 0 step 1 until 10:
> 
> show p;
> 
> p := p + 1;
> 
> fill fullcircle xyscaled(3cm,4cm) shifted ((p +2)*cm, (p + 2)*cm) 
> withcolor red ;
> 
> endfor;
> 
> StopPage;
> 
> \stopMPpage
> 
> \stoptext

\enabletrackers[metapost.tracingall]


but best use:

message(p);

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Problem with show command in MetaFun
  2021-01-07 15:35 ` Hans Hagen
@ 2021-01-07 15:41   ` Keith McKay
  0 siblings, 0 replies; 3+ messages in thread
From: Keith McKay @ 2021-01-07 15:41 UTC (permalink / raw)
  To: Hans Hagen, mailing list for ConTeXt users

Thanks Hans!

I had forgotten about \enabletrackers[metapost.tracingall].

Best Wishes

Keith

On 07/01/2021 15:35, Hans Hagen wrote:
> On 1/7/2021 4:11 PM, Keith McKay wrote:
>> In the MWE below I would expect the "show" command to print the value 
>> of p in the console output (I use Texworks), however this does not 
>> seem to be happening. I haven't used "show" in MetaFun for a while, 
>> am I implementing it correctly?
>>
>> Best Wishes
>>
>> Keith McKay
>>
>> %%%%%%%% MWE %%%%%%%%%
>>
>> \setuppapersize[A4, portrait]
>>
>> \starttext
>>
>> \startMPpage
>>
>> StartPage;
>>
>> width := PaperWidth ; height := PaperHeight ; unit := cm ;
>>
>> numeric p;
>>
>> p := 0;
>>
>> for q = 0 step 1 until 10:
>>
>> show p;
>>
>> p := p + 1;
>>
>> fill fullcircle xyscaled(3cm,4cm) shifted ((p +2)*cm, (p + 2)*cm) 
>> withcolor red ;
>>
>> endfor;
>>
>> StopPage;
>>
>> \stopMPpage
>>
>> \stoptext
>
> \enabletrackers[metapost.tracingall]
>
>
> but best use:
>
> message(p);
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2021-01-07 15:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-07 15:11 Problem with show command in MetaFun Keith McKay
2021-01-07 15:35 ` Hans Hagen
2021-01-07 15:41   ` Keith McKay

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).