From ecdf859b6ce481abfd530425dcf6f0f764bd0001 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Tue, 28 Dec 2021 03:01:00 +0000 Subject: CTAN sync 202112280300 --- graphics/asymptote/GUI/res/icons.qrc | 3 ++ graphics/asymptote/GUI/res/icons/brush.svg | 13 +++++++ graphics/asymptote/GUI/res/icons/bucket.asy | 4 +-- graphics/asymptote/GUI/res/icons/bucket.svg | 16 ++++----- graphics/asymptote/GUI/res/icons/center.svg | 12 +++---- graphics/asymptote/GUI/res/icons/centerorigin.svg | 16 ++++----- graphics/asymptote/GUI/res/icons/closedcurve.asy | 2 +- graphics/asymptote/GUI/res/icons/closedcurve.svg | 24 ++++++------- graphics/asymptote/GUI/res/icons/closedpolygon.asy | 2 +- graphics/asymptote/GUI/res/icons/closedpolygon.svg | 24 ++++++------- graphics/asymptote/GUI/res/icons/filledbucket.svg | 20 +++++------ graphics/asymptote/GUI/res/icons/opencurve.asy | 2 +- graphics/asymptote/GUI/res/icons/opencurve.svg | 24 ++++++------- graphics/asymptote/GUI/res/icons/openpolygon.asy | 2 +- graphics/asymptote/GUI/res/icons/openpolygon.svg | 24 ++++++------- graphics/asymptote/GUI/res/icons/redo.svg | 40 ++++++++++++++++++++++ graphics/asymptote/GUI/res/icons/undo.svg | 40 ++++++++++++++++++++++ 17 files changed, 182 insertions(+), 86 deletions(-) create mode 100644 graphics/asymptote/GUI/res/icons/brush.svg create mode 100644 graphics/asymptote/GUI/res/icons/redo.svg create mode 100644 graphics/asymptote/GUI/res/icons/undo.svg (limited to 'graphics/asymptote/GUI/res') diff --git a/graphics/asymptote/GUI/res/icons.qrc b/graphics/asymptote/GUI/res/icons.qrc index 50928ef9b7..5ca468acc2 100644 --- a/graphics/asymptote/GUI/res/icons.qrc +++ b/graphics/asymptote/GUI/res/icons.qrc @@ -41,5 +41,8 @@ icons/android-radio-button-off.svg icons/android-locate.svg icons/close-round.svg + icons/brush.svg + icons/undo.svg + icons/redo.svg diff --git a/graphics/asymptote/GUI/res/icons/brush.svg b/graphics/asymptote/GUI/res/icons/brush.svg new file mode 100644 index 0000000000..0c6a54340b --- /dev/null +++ b/graphics/asymptote/GUI/res/icons/brush.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/graphics/asymptote/GUI/res/icons/bucket.asy b/graphics/asymptote/GUI/res/icons/bucket.asy index 8744743698..5f6e071cce 100644 --- a/graphics/asymptote/GUI/res/icons/bucket.asy +++ b/graphics/asymptote/GUI/res/icons/bucket.asy @@ -9,7 +9,7 @@ path left=(-r,h)--(-r,0); path right=(r,0)--(r,h); path bottom=xscale(r)*arc(0,1,180,360); -real H=0.9h; +real H=0.8h; path Left=(-r,H/2)--(-r,0); path Right=(r,0)--(r,H/2); @@ -17,7 +17,7 @@ bool fill=false; // Set to true for filled bucket. usersetting(); if(fill) - fill(Left--bottom--Right--shift(0,H)*xscale(r)*arc(0,1,0,180)--cycle,gray); + fill(Left--bottom--Right--shift(0,H)*xscale(r)*arc(0,1,0,180)--cycle,paleblue); draw(shift(0,h)*xscale(r)*unitcircle); draw(left--bottom--right); diff --git a/graphics/asymptote/GUI/res/icons/bucket.svg b/graphics/asymptote/GUI/res/icons/bucket.svg index 4a41e9873b..11a867ac9f 100644 --- a/graphics/asymptote/GUI/res/icons/bucket.svg +++ b/graphics/asymptote/GUI/res/icons/bucket.svg @@ -1,15 +1,15 @@ - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/center.svg b/graphics/asymptote/GUI/res/icons/center.svg index 9a7cb1b17d..6c378d1e7e 100644 --- a/graphics/asymptote/GUI/res/icons/center.svg +++ b/graphics/asymptote/GUI/res/icons/center.svg @@ -1,12 +1,12 @@ - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/centerorigin.svg b/graphics/asymptote/GUI/res/icons/centerorigin.svg index ee3cca2629..cce97c373b 100644 --- a/graphics/asymptote/GUI/res/icons/centerorigin.svg +++ b/graphics/asymptote/GUI/res/icons/centerorigin.svg @@ -1,15 +1,15 @@ - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/closedcurve.asy b/graphics/asymptote/GUI/res/icons/closedcurve.asy index 80e7061971..9d1679b499 100644 --- a/graphics/asymptote/GUI/res/icons/closedcurve.asy +++ b/graphics/asymptote/GUI/res/icons/closedcurve.asy @@ -2,6 +2,6 @@ defaultpen(2.5); path p=W..NW..ENE..0.5*SE..cycle; draw(p); -dot(p,linewidth(12)); +dot(p,red+linewidth(12)); shipout(pad(64,64)); diff --git a/graphics/asymptote/GUI/res/icons/closedcurve.svg b/graphics/asymptote/GUI/res/icons/closedcurve.svg index 32cf982cf1..33de78fc38 100644 --- a/graphics/asymptote/GUI/res/icons/closedcurve.svg +++ b/graphics/asymptote/GUI/res/icons/closedcurve.svg @@ -1,21 +1,21 @@ - - + + - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/closedpolygon.asy b/graphics/asymptote/GUI/res/icons/closedpolygon.asy index 612bdcf010..871af18c85 100644 --- a/graphics/asymptote/GUI/res/icons/closedpolygon.asy +++ b/graphics/asymptote/GUI/res/icons/closedpolygon.asy @@ -2,6 +2,6 @@ defaultpen(2.5); path p=W--NW--ENE--0.5*SE--cycle; draw(p); -dot(p,linewidth(12)); +dot(p,red+linewidth(12)); shipout(pad(64,64)); diff --git a/graphics/asymptote/GUI/res/icons/closedpolygon.svg b/graphics/asymptote/GUI/res/icons/closedpolygon.svg index 89e2c5f230..ce6960bb84 100644 --- a/graphics/asymptote/GUI/res/icons/closedpolygon.svg +++ b/graphics/asymptote/GUI/res/icons/closedpolygon.svg @@ -1,21 +1,21 @@ - - + + - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/filledbucket.svg b/graphics/asymptote/GUI/res/icons/filledbucket.svg index d2197375b9..b6b279840f 100644 --- a/graphics/asymptote/GUI/res/icons/filledbucket.svg +++ b/graphics/asymptote/GUI/res/icons/filledbucket.svg @@ -1,18 +1,18 @@ - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/opencurve.asy b/graphics/asymptote/GUI/res/icons/opencurve.asy index e8fca0f2e8..8094e3ea7b 100644 --- a/graphics/asymptote/GUI/res/icons/opencurve.asy +++ b/graphics/asymptote/GUI/res/icons/opencurve.asy @@ -2,6 +2,6 @@ defaultpen(2.5); path p=W..NW..ENE..0.5*SE; draw(p); -dot(p,linewidth(12)); +dot(p,red+linewidth(12)); shipout(pad(64,64)); diff --git a/graphics/asymptote/GUI/res/icons/opencurve.svg b/graphics/asymptote/GUI/res/icons/opencurve.svg index 3c02ba2906..16151d7e98 100644 --- a/graphics/asymptote/GUI/res/icons/opencurve.svg +++ b/graphics/asymptote/GUI/res/icons/opencurve.svg @@ -1,21 +1,21 @@ - - + + - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/openpolygon.asy b/graphics/asymptote/GUI/res/icons/openpolygon.asy index 22f7b09da7..976cc7b1cf 100644 --- a/graphics/asymptote/GUI/res/icons/openpolygon.asy +++ b/graphics/asymptote/GUI/res/icons/openpolygon.asy @@ -2,6 +2,6 @@ defaultpen(2.5); path p=W--NW--ENE--0.5*SE; draw(p); -dot(p,linewidth(12)); +dot(p,red+linewidth(12)); shipout(pad(64,64)); diff --git a/graphics/asymptote/GUI/res/icons/openpolygon.svg b/graphics/asymptote/GUI/res/icons/openpolygon.svg index 5386aa6433..eb38eef8c1 100644 --- a/graphics/asymptote/GUI/res/icons/openpolygon.svg +++ b/graphics/asymptote/GUI/res/icons/openpolygon.svg @@ -1,21 +1,21 @@ - - + + - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/graphics/asymptote/GUI/res/icons/redo.svg b/graphics/asymptote/GUI/res/icons/redo.svg new file mode 100644 index 0000000000..a8647d7a3c --- /dev/null +++ b/graphics/asymptote/GUI/res/icons/redo.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/graphics/asymptote/GUI/res/icons/undo.svg b/graphics/asymptote/GUI/res/icons/undo.svg new file mode 100644 index 0000000000..76a7f0d32c --- /dev/null +++ b/graphics/asymptote/GUI/res/icons/undo.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3