ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Buffered metapost function freezes random numbers
Date: Fri, 27 May 2016 11:19:14 +0200	[thread overview]
Message-ID: <422420db-6856-480b-3dcf-6db559b364da@wxs.nl> (raw)
In-Reply-To: <CAPBmU9HeANusUyCq7VyyVkLving_DGX3GZ+rGsfRPxgAZkz_Ow@mail.gmail.com>

On 5/25/2016 7:09 PM, DesdeChaves wrote:
> For educational purposes I try to simulate a ammeter for reading practice.
> I would like create six or more ammeter with different readings, but i'm
> not able to do that because metapost create the same random number every
> time I call the buffer that defines my ammeter.
>
> How can I fix that?
>
> Thanks
>
> Jorge
>
> My code:
>
>
> \startbuffer[ammeter]
> \startMPcode
>    r := 4cm; len := 10bp; min_thickness := 1.75bp; hour_thickness := 3bp;
>       path cadran; cadran = fullcircle scaled (2r);
>      numeric escala;
>      escala := 0;
>  for i = 50 upto 70:
>         if i mod 5 = 0:
>           j := i div 5; angl := 90-30j;
>           freelabel("\tfb\bf" & decimal escala, (r+len)*dir angl, r*dir
> angl);
>           draw ((r, 0) -- (r - len, 0)) rotated angl withpen pencircle
> scaled min_thickness;
>           escala:= escala + 0.5;
>         else:
>           angl := 90 - 6i;
>           draw ((r, 0) -- (r - .5len, 0)) rotated angl;
>         fi
>  endfor
> pickup pencircle scaled min_thickness;
> numeric  minute;
> %randomseed := uniformdeviate infinity;
> minute:= 50 + uniformdeviate(20);
>  pair A, B, C;
> A:=1.6r*right+.5r*up;
> C:=1.6r*right+.8r*up;
> B:=1.1r*left;
>  drawarrow origin -- r*dir(90-minute*6) cutends (0, 1.5len);
> fill fullcircle scaled .75len;
> draw unitsquare xscaled 3.2r yscaled 1.5r shifted B;
> label("\tfb I (A)", 1.2r*up+1.6r*right) withcolor red;
> draw fullcircle scaled 2len shifted A;
> draw fullcircle scaled 2len shifted C;
> \stopMPcode
> \stopbuffer
>
>
>
> \startbuffer[programa]
>
> \placefigure[center,nonumber]{}{
> \startcombination[2*1]
> {\externalfigure[ammeter][type=buffer,width=8cm]}{\_\_\_\_\_\_\_\_\_\_$\pm$\_\_\_\_\_\_\_\_}
> {\externalfigure[ammeter][type=buffer,width=8cm]}{\_\_\_\_\_\_\_\_\_\_$\pm$\_\_\_\_\_\_\_\_}
> }
> \stopcombination

\stopcombination in wrong spot

> \stopbuffer
>
>
> \starttext
>
> \dorecurse{3} {\getbuffer[programa]}
>
> \stoptext

disable object reuse

\startplacefigure
     \startcombination[2*1]
 
{\externalfigure[ammeter][type=buffer,object=no,width=8cm]}{\_\_\_\_\_\_\_\_\_\_$\pm$\_\_\_\_\_\_\_\_}
 
{\externalfigure[ammeter][type=buffer,object=no,width=8cm]}{\_\_\_\_\_\_\_\_\_\_$\pm$\_\_\_\_\_\_\_\_}
     \stopcombination
\stopplacefigure

\stopbuffer



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
       tel: 038 477 53 69 | www.pragma-ade.com | 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

      parent reply	other threads:[~2016-05-27  9:19 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-25 17:09 DesdeChaves
2016-05-25 17:30 ` Wolfgang Schuster
2016-05-25 17:44   ` DesdeChaves
2016-05-27  9:19 ` Hans Hagen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=422420db-6856-480b-3dcf-6db559b364da@wxs.nl \
    --to=pragma@wxs.nl \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).