add round corner for patches.Rectangle, not with FancyBboxPatch

hi everyone,
    I see the FancyBboxPatch can add round corner in
https://matplotlib.org/gallery/shapes_and_collections/fancybox_demo.html ,
but that has some space between the rectangle and the fancybox. And I just
want to add round corner instead of the sharp corner for Rectangle, not to
expand the rectangle region.
    That confused me a few days, thanks for any help~

Best Regards
Si
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180723/a370f59d/attachment.html>

update: I use round,pad=1,rounding_size=0.4, it works well in demo script
! But when I use that in my real script, that don't work, even I use
set_boxstyle("round,pad=1,rounding_size=0.4"), it also not woks.
Aattachment is my script and ipynb and input file.

thanks~

orange si <ilikeorangeapple at gmail.com> ?2018?7?23??? ??3:11???

hi everyone,
    I see the FancyBboxPatch can add round corner in
https://matplotlib.org/gallery/shapes_and_collections/fancybox_demo.html
, but that has some space between the rectangle and the fancybox. And I
just want to add round corner instead of the sharp corner for Rectangle,
not to expand the rectangle region.
    That confused me a few days, thanks for any help~

Best Regards
Si

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/eea20148/attachment-0001.html&gt;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Untitled.py
Type: application/octet-stream
Size: 9235 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/eea20148/attachment-0003.obj&gt;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Untitled.ipynb
Type: application/octet-stream
Size: 76467 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/eea20148/attachment-0004.obj&gt;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: input.gff
Type: application/octet-stream
Size: 3058 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/eea20148/attachment-0005.obj&gt;

I wonder if specifying the join_style or cap_style for rounded corners
might help?

https://matplotlib.org/examples/api/joinstyle.html

Never tried it before for patches, though.

Cheers!
Ben Root

···

On Wed, Jul 25, 2018 at 2:13 AM, orange si <ilikeorangeapple at gmail.com> wrote:

update: I use round,pad=1,rounding_size=0.4, it works well in demo
script ! But when I use that in my real script, that don't work, even I use
set_boxstyle("round,pad=1,rounding_size=0.4"), it also not woks.
Aattachment is my script and ipynb and input file.

thanks~

orange si <ilikeorangeapple at gmail.com> ?2018?7?23??? ??3:11???

hi everyone,
    I see the FancyBboxPatch can add round corner in
https://matplotlib.org/gallery/shapes_and_collections/fancybox_demo.html
, but that has some space between the rectangle and the fancybox. And I
just want to add round corner instead of the sharp corner for Rectangle,
not to expand the rectangle region.
    That confused me a few days, thanks for any help~

Best Regards
Si

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users at python.org
Matplotlib-users Info Page

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/96fd8c20/attachment.html&gt;

I tried this:
   p2 = FancyBboxPatch((fp_x, fp_y), fp_width,
fp_height,fc=fp_color,ec="black", linewidth=0.3,
boxstyle='round,pad=0,rounding_size=0.5', joinstyle="round",
capstyle='round')
   ax.add_patch(p2)
but still get a sharp cornor box~
I am confused that why that code work well in demo script, but when in my
real script, it didnot work, I think maybe my real script has some error
codes which I am missing.

Benjamin Root <ben.v.root at gmail.com> ?2018?7?25??? ??9:33???

I wonder if specifying the join_style or cap_style for rounded corners
might help?

https://matplotlib.org/examples/api/joinstyle.html

Never tried it before for patches, though.

Cheers!
Ben Root

update: I use round,pad=1,rounding_size=0.4, it works well in demo
script ! But when I use that in my real script, that don't work, even I use
set_boxstyle("round,pad=1,rounding_size=0.4"), it also not woks.
Aattachment is my script and ipynb and input file.

thanks~

orange si <ilikeorangeapple at gmail.com> ?2018?7?23??? ??3:11???

hi everyone,
    I see the FancyBboxPatch can add round corner in
https://matplotlib.org/gallery/shapes_and_collections/fancybox_demo.html
, but that has some space between the rectangle and the fancybox. And I
just want to add round corner instead of the sharp corner for Rectangle,
not to expand the rectangle region.
    That confused me a few days, thanks for any help~

Best Regards
Si

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users at python.org
Matplotlib-users Info Page

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180725/64daa0eb/attachment.html&gt;

···

On Wed, Jul 25, 2018 at 2:13 AM, orange si <ilikeorangeapple at gmail.com> > wrote:

my mistake~ I didn't realisze the true meaning of rounding_size, I just
increase it to 100, it works! beacuse the xlimit is about 10000, so the raw
rounding_size=0.2 didn't work well.
I close this issue, thanks all for my stupid qustion~

orange si <ilikeorangeapple at gmail.com> ?2018?7?25??? ??10:15???

I tried this:
   p2 = FancyBboxPatch((fp_x, fp_y), fp_width,
fp_height,fc=fp_color,ec="black", linewidth=0.3,
boxstyle='round,pad=0,rounding_size=0.5', joinstyle="round",
capstyle='round')
   ax.add_patch(p2)
but still get a sharp cornor box~
I am confused that why that code work well in demo script, but when in my
real script, it didnot work, I think maybe my real script has some error
codes which I am missing.

Benjamin Root <ben.v.root at gmail.com> ?2018?7?25??? ??9:33???

I wonder if specifying the join_style or cap_style for rounded corners
might help?

https://matplotlib.org/examples/api/joinstyle.html

Never tried it before for patches, though.

Cheers!
Ben Root

update: I use round,pad=1,rounding_size=0.4, it works well in demo
script ! But when I use that in my real script, that don't work, even I use
set_boxstyle("round,pad=1,rounding_size=0.4"), it also not woks.
Aattachment is my script and ipynb and input file.

thanks~

orange si <ilikeorangeapple at gmail.com> ?2018?7?23??? ??3:11???

hi everyone,
    I see the FancyBboxPatch can add round corner in
https://matplotlib.org/gallery/shapes_and_collections/fancybox_demo.html
, but that has some space between the rectangle and the fancybox. And I
just want to add round corner instead of the sharp corner for Rectangle,
not to expand the rectangle region.
    That confused me a few days, thanks for any help~

Best Regards
Si

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users at python.org
Matplotlib-users Info Page

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20180726/8274b32c/attachment-0001.html&gt;

···

On Wed, Jul 25, 2018 at 2:13 AM, orange si <ilikeorangeapple at gmail.com> >> wrote: