Problem with shadings declarations in pgf












0















I have no real question but rather some observations about declaring shadings in pgf.



First strange thing is that parameterless shadings are declared globally while shadings with parameters are declared locally. For instance, if one says



begingroup
pgfdeclareverticalshading{myshading1}{1cm}{color(0cm)=(red);color(1cm)=(blue)}
pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
endgroup


then



pgfuseshading{myshading1}


works because myshading1 was actually declared globally, while



colorlet{mycolor}{red}
pgfuseshading{myshading1}


does not because myshading2 was declared locally.



However, when a shading with parameters is used, a specific instance is declared globally if not already declared. For instance, after



begingroup
pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
colorlet{mycolor}{red}
pgfuseshading{myshading2}
endgroup


the shading myshading2,1,0,0 is declared globally (red=rgb(1,0,0)), and one may use



pgfuseshading{myshading2,1,0,0}


although myshading2 is not defined anymore.



Another problem is that redefining a shading with parameters is impossible or at least may produce strange results. In the following example, myshading2 is first declared as a vertical shading and used with mycolor=red. Afterwards it is redeclared as a radial shading and used first with mycolor=green which works as expected and then with mycolor=red which uses falsely the vertical shading: since myshading2,1,0,0 was already declared, it is not redefined.



pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
colorlet{mycolor}{red}
pgfuseshading{myshading2}
pgfdeclareradialshading[mycolor]{myshading2}{pgfpointorigin}{color(0cm)=(mycolor!20);color(.5cm)=(mycolor)}
colorlet{mycolor}{green}
pgfuseshading{myshading2}% correct
colorlet{mycolor}{red}
pgfuseshading{myshading2}% incorrect: uses the vertical shading 'myshading2[red]'









share|improve this question



























    0















    I have no real question but rather some observations about declaring shadings in pgf.



    First strange thing is that parameterless shadings are declared globally while shadings with parameters are declared locally. For instance, if one says



    begingroup
    pgfdeclareverticalshading{myshading1}{1cm}{color(0cm)=(red);color(1cm)=(blue)}
    pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
    endgroup


    then



    pgfuseshading{myshading1}


    works because myshading1 was actually declared globally, while



    colorlet{mycolor}{red}
    pgfuseshading{myshading1}


    does not because myshading2 was declared locally.



    However, when a shading with parameters is used, a specific instance is declared globally if not already declared. For instance, after



    begingroup
    pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
    colorlet{mycolor}{red}
    pgfuseshading{myshading2}
    endgroup


    the shading myshading2,1,0,0 is declared globally (red=rgb(1,0,0)), and one may use



    pgfuseshading{myshading2,1,0,0}


    although myshading2 is not defined anymore.



    Another problem is that redefining a shading with parameters is impossible or at least may produce strange results. In the following example, myshading2 is first declared as a vertical shading and used with mycolor=red. Afterwards it is redeclared as a radial shading and used first with mycolor=green which works as expected and then with mycolor=red which uses falsely the vertical shading: since myshading2,1,0,0 was already declared, it is not redefined.



    pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
    colorlet{mycolor}{red}
    pgfuseshading{myshading2}
    pgfdeclareradialshading[mycolor]{myshading2}{pgfpointorigin}{color(0cm)=(mycolor!20);color(.5cm)=(mycolor)}
    colorlet{mycolor}{green}
    pgfuseshading{myshading2}% correct
    colorlet{mycolor}{red}
    pgfuseshading{myshading2}% incorrect: uses the vertical shading 'myshading2[red]'









    share|improve this question

























      0












      0








      0








      I have no real question but rather some observations about declaring shadings in pgf.



      First strange thing is that parameterless shadings are declared globally while shadings with parameters are declared locally. For instance, if one says



      begingroup
      pgfdeclareverticalshading{myshading1}{1cm}{color(0cm)=(red);color(1cm)=(blue)}
      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      endgroup


      then



      pgfuseshading{myshading1}


      works because myshading1 was actually declared globally, while



      colorlet{mycolor}{red}
      pgfuseshading{myshading1}


      does not because myshading2 was declared locally.



      However, when a shading with parameters is used, a specific instance is declared globally if not already declared. For instance, after



      begingroup
      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}
      endgroup


      the shading myshading2,1,0,0 is declared globally (red=rgb(1,0,0)), and one may use



      pgfuseshading{myshading2,1,0,0}


      although myshading2 is not defined anymore.



      Another problem is that redefining a shading with parameters is impossible or at least may produce strange results. In the following example, myshading2 is first declared as a vertical shading and used with mycolor=red. Afterwards it is redeclared as a radial shading and used first with mycolor=green which works as expected and then with mycolor=red which uses falsely the vertical shading: since myshading2,1,0,0 was already declared, it is not redefined.



      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}
      pgfdeclareradialshading[mycolor]{myshading2}{pgfpointorigin}{color(0cm)=(mycolor!20);color(.5cm)=(mycolor)}
      colorlet{mycolor}{green}
      pgfuseshading{myshading2}% correct
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}% incorrect: uses the vertical shading 'myshading2[red]'









      share|improve this question














      I have no real question but rather some observations about declaring shadings in pgf.



      First strange thing is that parameterless shadings are declared globally while shadings with parameters are declared locally. For instance, if one says



      begingroup
      pgfdeclareverticalshading{myshading1}{1cm}{color(0cm)=(red);color(1cm)=(blue)}
      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      endgroup


      then



      pgfuseshading{myshading1}


      works because myshading1 was actually declared globally, while



      colorlet{mycolor}{red}
      pgfuseshading{myshading1}


      does not because myshading2 was declared locally.



      However, when a shading with parameters is used, a specific instance is declared globally if not already declared. For instance, after



      begingroup
      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}
      endgroup


      the shading myshading2,1,0,0 is declared globally (red=rgb(1,0,0)), and one may use



      pgfuseshading{myshading2,1,0,0}


      although myshading2 is not defined anymore.



      Another problem is that redefining a shading with parameters is impossible or at least may produce strange results. In the following example, myshading2 is first declared as a vertical shading and used with mycolor=red. Afterwards it is redeclared as a radial shading and used first with mycolor=green which works as expected and then with mycolor=red which uses falsely the vertical shading: since myshading2,1,0,0 was already declared, it is not redefined.



      pgfdeclareverticalshading[mycolor]{myshading2}{1cm}{color(0cm)=(mycolor);color(1cm)=(mycolor!20)}
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}
      pgfdeclareradialshading[mycolor]{myshading2}{pgfpointorigin}{color(0cm)=(mycolor!20);color(.5cm)=(mycolor)}
      colorlet{mycolor}{green}
      pgfuseshading{myshading2}% correct
      colorlet{mycolor}{red}
      pgfuseshading{myshading2}% incorrect: uses the vertical shading 'myshading2[red]'






      tikz-pgf shading






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 29 at 17:21









      Eric DomenjoudEric Domenjoud

      87828




      87828






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "85"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f472420%2fproblem-with-shadings-declarations-in-pgf%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f472420%2fproblem-with-shadings-declarations-in-pgf%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to send String Array data to Server using php in android

          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

          Is anime1.com a legal site for watching anime?