ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* About filling paths, unfill, etc.
@ 2020-11-03 11:59 Jairo A. del Rio
  2020-11-03 12:29 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Jairo A. del Rio @ 2020-11-03 11:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi everyone. I want to know if nowadays (2020) Metafun is able to do an
actual unfill, like above:

https://tex.stackexchange.com/questions/151068/how-can-i-fill-a-complex-path-with-metapost-metafun/218718#218718

Example of what I want to do:

\startMPpage

path A, B, C;

A := unitcircle shifted (-center unitcircle);

A := A scaled 4cm;

B := unitcircle shifted (-center unitcircle);

B := B scaled 1cm;

%C := (reverse B) shifted (left*1.4cm);

%It works for two paths

fill (reverse B)-- A -- cycle withcolor red;

%fill A -- (reverse B) -- C -- cycle withcolor red;

%When I try the same with three paths, a thin, unwanted line appears

\stopMPpage

I'm aware of unfill and I've read somewhere else about using pens instead,
but I want to know if a better solution is possible. Thank you in advance.

Regards,

Jairo :)

[-- Attachment #1.2: Type: text/html, Size: 2008 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: About filling paths, unfill, etc.
  2020-11-03 11:59 About filling paths, unfill, etc Jairo A. del Rio
@ 2020-11-03 12:29 ` Hans Hagen
  2020-11-03 13:09   ` Jairo A. del Rio
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2020-11-03 12:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Jairo A. del Rio

On 11/3/2020 12:59 PM, Jairo A. del Rio wrote:
> Hi everyone. I want to know if nowadays (2020) Metafun is able to do an 
> actual unfill, like above:
> 
> https://tex.stackexchange.com/questions/151068/how-can-i-fill-a-complex-path-with-metapost-metafun/218718#218718
> 
> Example of what I want to do:
> 
> \startMPpage
> 
> path A, B, C;
> 
> A := unitcircle shifted (-center unitcircle);
> 
> A := A scaled 4cm;
> 
> B := unitcircle shifted (-center unitcircle);
> 
> B := B scaled 1cm;
> 
> %C := (reverse B) shifted (left*1.4cm);
> 
> %It works for two paths
> 
> fill (reverse B)-- A -- cycle withcolor red;
> 
> %fill A -- (reverse B) -- C -- cycle withcolor red;
> 
> %When I try the same with three paths, a thin, unwanted line appears
> 
> \stopMPpage
> 
> I'm aware of unfill and I've read somewhere else about using pens 
> instead, but I want to know if a better solution is possible. Thank you 
> in advance.
     \startMPpage
         path A; A := (unitcircle shifted (-center unitcircle)) scaled 4cm;
         path B; B := (unitcircle shifted (-center unitcircle)) scaled 1cm;
         path C; C := B shifted (left*1.4cm);

         nofill A; nofill B; eofill C;
     \stopMPpage

to be wikified

-----------------------------------------------------------------
                                           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: About filling paths, unfill, etc.
  2020-11-03 12:29 ` Hans Hagen
@ 2020-11-03 13:09   ` Jairo A. del Rio
  0 siblings, 0 replies; 3+ messages in thread
From: Jairo A. del Rio @ 2020-11-03 13:09 UTC (permalink / raw)
  To: Hans Hagen; +Cc: mailing list for ConTeXt users


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

Oh, cool. I've found some info in the Metafun manual too. I should read
more carefully next time.
Thank you very much!

Jairo :)

El mar., 3 de nov. de 2020 a la(s) 07:29, Hans Hagen (j.hagen@xs4all.nl)
escribió:

> On 11/3/2020 12:59 PM, Jairo A. del Rio wrote:
> > Hi everyone. I want to know if nowadays (2020) Metafun is able to do an
> > actual unfill, like above:
> >
> >
> https://tex.stackexchange.com/questions/151068/how-can-i-fill-a-complex-path-with-metapost-metafun/218718#218718
> >
> > Example of what I want to do:
> >
> > \startMPpage
> >
> > path A, B, C;
> >
> > A := unitcircle shifted (-center unitcircle);
> >
> > A := A scaled 4cm;
> >
> > B := unitcircle shifted (-center unitcircle);
> >
> > B := B scaled 1cm;
> >
> > %C := (reverse B) shifted (left*1.4cm);
> >
> > %It works for two paths
> >
> > fill (reverse B)-- A -- cycle withcolor red;
> >
> > %fill A -- (reverse B) -- C -- cycle withcolor red;
> >
> > %When I try the same with three paths, a thin, unwanted line appears
> >
> > \stopMPpage
> >
> > I'm aware of unfill and I've read somewhere else about using pens
> > instead, but I want to know if a better solution is possible. Thank you
> > in advance.
>      \startMPpage
>          path A; A := (unitcircle shifted (-center unitcircle)) scaled 4cm;
>          path B; B := (unitcircle shifted (-center unitcircle)) scaled 1cm;
>          path C; C := B shifted (left*1.4cm);
>
>          nofill A; nofill B; eofill C;
>      \stopMPpage
>
> to be wikified
>
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>         tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
>

[-- Attachment #1.2: Type: text/html, Size: 2796 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

end of thread, other threads:[~2020-11-03 13:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-03 11:59 About filling paths, unfill, etc Jairo A. del Rio
2020-11-03 12:29 ` Hans Hagen
2020-11-03 13:09   ` Jairo A. del Rio

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