ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Aditya Mahajan <adityam@umich.edu>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: How can I compare picture variables in metapost?
Date: Tue, 5 May 2009 18:57:31 -0400 (EDT)	[thread overview]
Message-ID: <alpine.LNX.2.00.0905051851160.8272@ybpnyubfg.ybpnyqbznva> (raw)
In-Reply-To: <769ba7780905050819o68b79a5ek4741bfbb6fded7b6@mail.gmail.com>

On Tue, 5 May 2009, Zhichu Chen wrote:

> On Tue, May 5, 2009 at 11:04 PM, Taco Hoekwater <taco@elvenkind.com> wrote:
>> Zhichu Chen wrote:
>>>
>>> What I want exactly is how to determine if there's anything on
>>> some region of the picture. I need this to test if the random
>>> point I picked is useful.
>>
>> That is easy to answer: you can't (well, not unless you invest a *lot*
>> of effort into creating a bitmap edge structure).
> Well, quick and pain.
>>
>> However what you can do is ask metapost to calculate intersectionpoints
>> with (the most likely ones of) the already existing objects. This may
>> be the easiest solution (even though it will be so slow that for large
>> numbers of items you may be forced to start a division tree).
>>
>> The core trick is that you randomly place a circle with random radius
>> inside an x-y field, and you keep those paths/pictures in an array. For
>> each newlyt generated circle, you look for an intersection with all the
>> already existing ones (and the rectangle borders) and keep trying
>> to re-place it until there are no more collisions.
>
> Seems that I don't have too many choices. Maybe using lua to do the
> math and throwing the result to metapost is faster? I think I can do
> this, but I don't know how. The documents are a little limited.

Here is an attempt with lua.

Aditya

\startluacode

third = third or {}

function third.generate (x,y,r)
   return { ["center"] = {math.random() * x, math.random()*y}
          , ["radius"] = math.random() * r }
end

function third.distance (p1, p2)
   return math.sqrt( (p1[1] - p2[1])^2 + (p1[2] - p2[2])^2 )
end

function third.feasible (c, list)
   if list then
   for i,v in pairs(list) do
     if third.distance (c["center"], v["center"]) < c["radius"] + v["radius"] then
       return false
     end
   end
   end
   return true
end

function third.add_circle (x,y,r,list)
   local c = {}
   repeat
     c = third.generate(x,y,r)
   until third.feasible(c,list)
   return c
end

function third.fill_circles(n,x,y,r)
   local list = {}
   for i=1,n do
     table.insert(list, third.add_circle(x,y,r, list))
   end
   return list
end

function third.toMP(c, scale)
   local tprint = function(s) tex.sprint(tex.ctxcatcodes,s) end
   local scaled = function(p) return ("(" .. p .. "*" .. scale .. ")") end
   tprint("draw fullcircle scaled " .. scaled(2*c["radius"]) ..
           " shifted (" .. scaled(c["center"][1]) .. "," ..
                           scaled(c["center"][2]) .. "); \n")
end


function third.show_circles(n,x,y,r)
   local tprint = function(s) tex.sprint(tex.ctxcatcodes,s) end
   local list = third.fill_circles(n,x,y,r)
   tprint("\\startMPcode")
   for i,v in pairs(list) do
     third.toMP(v, "1cm")
   end
   tprint("\\stopMPcode")
end

\stopluacode

\def\drawCircles{\ctxlua{third.show_circles(100,10,10,2)}}

\starttext
\drawCircles

\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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


      parent reply	other threads:[~2009-05-05 22:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-05 12:27 Zhichu Chen
2009-05-05 12:51 ` Taco Hoekwater
2009-05-05 13:51   ` Zhichu Chen
2009-05-05 15:04     ` Taco Hoekwater
2009-05-05 15:19       ` Zhichu Chen
2009-05-05 16:06         ` Taco Hoekwater
2009-05-05 16:54           ` Taco Hoekwater
2009-05-05 21:42             ` Peter Rolf
2009-05-05 23:28               ` Aditya Mahajan
2009-05-06  1:46                 ` Zhichu Chen
2009-05-06  2:10                   ` Aditya Mahajan
2009-05-06  3:09                     ` Aditya Mahajan
2009-05-06  9:06                 ` Peter Rolf
2009-05-05 22:57         ` Aditya Mahajan [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=alpine.LNX.2.00.0905051851160.8272@ybpnyubfg.ybpnyqbznva \
    --to=adityam@umich.edu \
    --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).