ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: ntg-context@ntg.nl
Subject: Re: plot data from file: cld
Date: Sun, 04 Jan 2015 13:03:23 +0100	[thread overview]
Message-ID: <54A92C0B.4090504@wxs.nl> (raw)
In-Reply-To: <5924A21BEF5844ECA5F8345D8A976FE1@CJ3001517A>

On 1/4/2015 6:04 AM, Akira Kakuto wrote:
> Dear John,
>
>> How to make this a polygon?
>
> An example:
>
> \starttext
> \startluacode
> local metafun = context.metafun
> metafun.start()
> io.input("DATA")
> local i, j
> local x, y, s, t1, t2
> i = 1
> x={}
> y={}
> s="draw "
> while true do
>   x[i], y[i] = io.read("*n", "*n")
>   if not x[i] then break end
>   metafun("filldraw fullcircle scaled 2mm shifted(%dcm,%dcm);",x[i],y[i])
>   i = i + 1
> end
> i = i - 1
> for j = 1, i do
>   t1 = tostring(x[j])
>   t2 = tostring(y[j])
>   s = s.."("..t1.."cm,"..t2.."cm)--"
> end
> t1 = tostring(x[1])
> t2 = tostring(y[1])
> s = s.."("..t1.."cm,"..t2.."cm)"
> s = s.." withpen pencircle scaled 1bp;"
> metafun(s)
> metafun.stop()
> \stopluacode
> \stoptext

Here is a bit more compact version. A path can normally nicely be concat 
using "--" or ".." and we have a metafun helper drawpoints.

\starttext
\startluacode
context.metafun.start()
local split = utilities.parsers.csvsplitter { separator = " " }
local data = split(io.loaddata("data.txt"))
for i=1,#data do
     data[i] = string.formatters["(%s,%s)"](unpack(data[i]))
end
context.metafun("path p ; p := (%s -- cycle) scaled cm 
;",table.concat(data,"--"))
context.metafun("draw       p withpen pencircle scaled 0.25mm ;")
context.metafun("drawpoints p withpen pencircle scaled 2.00mm ;")
context.metafun.stop()
\stopluacode
\stoptext




-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | 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
___________________________________________________________________________________

  reply	other threads:[~2015-01-04 12:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-04  5:04 Akira Kakuto
2015-01-04 12:03 ` Hans Hagen [this message]
     [not found] <mailman.88.1420455074.2429.ntg-context@ntg.nl>
2015-01-05 22:07 ` John Kitzmiller
     [not found] <mailman.1.1420369201.5393.ntg-context@ntg.nl>
2015-01-04 16:43 ` John Kitzmiller
  -- strict thread matches above, loose matches on Subject: below --
2015-01-03 23:43 John Kitzmiller

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=54A92C0B.4090504@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).