How to “add” units to results of pgfmathsetmacro?How can I produce a 'ring (or wheel) chart' like that on page 88 of the PGF manual?How to draw arcs linking two points in TikZ?Numerical conditional within tikz keys?circle vs arch with shorten — normal or bug?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingNode anchor centre of lineTikZ: create break in arc behind diameter?Drawing an arc between 2 nodes with a specific radiusHow to incorporate pgf macro into tikz path commandDrawing a curve (not necessarily an arc) in tikz-3dplot

How much can I judge a company based on a phone screening?

In which case does the Security misconfiguration vulnerability apply to?

How is являться different from есть and быть

How would you translate this? バタコチーズライス

Do Reform Jews believe in a theistic God?

Is this n-speak?

How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?

Case Condition for two lines

Why is the Lucas test not recommended to differentiate higher alcohols?

How far did Gandalf and the Balrog drop from the bridge in Moria?

What is a "soap"?

Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?

Why aren't rockets built with truss structures inside their fuel & oxidizer tanks to increase structural strength?

My cat is a houdini

Clarification on Integrability

What can Amex do if I cancel their card after using the sign up bonus miles?

How would timezones work on a planet 100 times the size of our Earth

Is it okay for a ticket seller to grab a tip in the USA?

(A room / an office) where an artist works

Are there really no countries that protect Freedom of Speech as the United States does?

Should I email my professor about a recommendation letter if he has offered me a job?

Are there any other rule mechanics that could grant Thieves' Cant?

How should I write this passage to make it the most readable?

How big are the Choedan Kal?



How to “add” units to results of pgfmathsetmacro?


How can I produce a 'ring (or wheel) chart' like that on page 88 of the PGF manual?How to draw arcs linking two points in TikZ?Numerical conditional within tikz keys?circle vs arch with shorten — normal or bug?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingNode anchor centre of lineTikZ: create break in arc behind diameter?Drawing an arc between 2 nodes with a specific radiusHow to incorporate pgf macro into tikz path commandDrawing a curve (not necessarily an arc) in tikz-3dplot






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















This question is inspired by Jake's answer to this question. The problem is illustrated by this MWE:



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetmacrodrro-ri % compute width
pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
draw[red,line width=dr] (0:ro) arc (0:360:ro);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


This produces the following output:



enter image description here



But this is not what I want, which is that the red strip should be between the two black circles. I expected that I could achieve this by replacing the first draw command by



draw[red,line width=dr] (0:rm) arc (0:360:rm);


but then I get a non-sensical result in which the red strip is far too large:



enter image description here



This is not surprising given the remarks in Section 94.1.2 "Considerations concerning units" in the pgf manual (v3.1.2). What does surprise me is that simply adding cm like this



draw[red,line width=dr] (0:rm cm) arc (0:360:rm cm);


does not work - in the sense that there is no change in the output. However, in Jake's answer, he adds pt which seems to work (as witnessed by his comment Somehow, the [...] units got lost, so we add 'pt' at the end. Not nice...).



So my questions are:



  1. Why does adding pt work in Jake's answer but not when I add cm?

  2. I cannot make sense of Section 94.1.2. There seem to be commands for checking whether units are "declared" but there do not seem to be any commands for "adding them back" to a result. What good is it to be able to check for units but not "adding them back"?









share|improve this question


























  • Also check out pgfmathsetlength and pgfmathsetlengthmacro.

    – John Kormylo
    41 mins ago


















3















This question is inspired by Jake's answer to this question. The problem is illustrated by this MWE:



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetmacrodrro-ri % compute width
pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
draw[red,line width=dr] (0:ro) arc (0:360:ro);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


This produces the following output:



enter image description here



But this is not what I want, which is that the red strip should be between the two black circles. I expected that I could achieve this by replacing the first draw command by



draw[red,line width=dr] (0:rm) arc (0:360:rm);


but then I get a non-sensical result in which the red strip is far too large:



enter image description here



This is not surprising given the remarks in Section 94.1.2 "Considerations concerning units" in the pgf manual (v3.1.2). What does surprise me is that simply adding cm like this



draw[red,line width=dr] (0:rm cm) arc (0:360:rm cm);


does not work - in the sense that there is no change in the output. However, in Jake's answer, he adds pt which seems to work (as witnessed by his comment Somehow, the [...] units got lost, so we add 'pt' at the end. Not nice...).



So my questions are:



  1. Why does adding pt work in Jake's answer but not when I add cm?

  2. I cannot make sense of Section 94.1.2. There seem to be commands for checking whether units are "declared" but there do not seem to be any commands for "adding them back" to a result. What good is it to be able to check for units but not "adding them back"?









share|improve this question


























  • Also check out pgfmathsetlength and pgfmathsetlengthmacro.

    – John Kormylo
    41 mins ago














3












3








3








This question is inspired by Jake's answer to this question. The problem is illustrated by this MWE:



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetmacrodrro-ri % compute width
pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
draw[red,line width=dr] (0:ro) arc (0:360:ro);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


This produces the following output:



enter image description here



But this is not what I want, which is that the red strip should be between the two black circles. I expected that I could achieve this by replacing the first draw command by



draw[red,line width=dr] (0:rm) arc (0:360:rm);


but then I get a non-sensical result in which the red strip is far too large:



enter image description here



This is not surprising given the remarks in Section 94.1.2 "Considerations concerning units" in the pgf manual (v3.1.2). What does surprise me is that simply adding cm like this



draw[red,line width=dr] (0:rm cm) arc (0:360:rm cm);


does not work - in the sense that there is no change in the output. However, in Jake's answer, he adds pt which seems to work (as witnessed by his comment Somehow, the [...] units got lost, so we add 'pt' at the end. Not nice...).



So my questions are:



  1. Why does adding pt work in Jake's answer but not when I add cm?

  2. I cannot make sense of Section 94.1.2. There seem to be commands for checking whether units are "declared" but there do not seem to be any commands for "adding them back" to a result. What good is it to be able to check for units but not "adding them back"?









share|improve this question
















This question is inspired by Jake's answer to this question. The problem is illustrated by this MWE:



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetmacrodrro-ri % compute width
pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
draw[red,line width=dr] (0:ro) arc (0:360:ro);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


This produces the following output:



enter image description here



But this is not what I want, which is that the red strip should be between the two black circles. I expected that I could achieve this by replacing the first draw command by



draw[red,line width=dr] (0:rm) arc (0:360:rm);


but then I get a non-sensical result in which the red strip is far too large:



enter image description here



This is not surprising given the remarks in Section 94.1.2 "Considerations concerning units" in the pgf manual (v3.1.2). What does surprise me is that simply adding cm like this



draw[red,line width=dr] (0:rm cm) arc (0:360:rm cm);


does not work - in the sense that there is no change in the output. However, in Jake's answer, he adds pt which seems to work (as witnessed by his comment Somehow, the [...] units got lost, so we add 'pt' at the end. Not nice...).



So my questions are:



  1. Why does adding pt work in Jake's answer but not when I add cm?

  2. I cannot make sense of Section 94.1.2. There seem to be commands for checking whether units are "declared" but there do not seem to be any commands for "adding them back" to a result. What good is it to be able to check for units but not "adding them back"?






tikz-pgf pgfmath






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 9 hours ago







user1362373

















asked 10 hours ago









user1362373user1362373

1,0951 gold badge11 silver badges28 bronze badges




1,0951 gold badge11 silver badges28 bronze badges















  • Also check out pgfmathsetlength and pgfmathsetlengthmacro.

    – John Kormylo
    41 mins ago


















  • Also check out pgfmathsetlength and pgfmathsetlengthmacro.

    – John Kormylo
    41 mins ago

















Also check out pgfmathsetlength and pgfmathsetlengthmacro.

– John Kormylo
41 mins ago






Also check out pgfmathsetlength and pgfmathsetlengthmacro.

– John Kormylo
41 mins ago











2 Answers
2






active

oldest

votes


















5














pgfmathsetmacro calculates a length and gives back the result in pt but without the unit pt attached - the macro contains simply a number. So if you want to use this number in a sensible way you should reattach the pt:



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetmacrodrro-ri % compute width
pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
showrm %<--- shows > rm=macro: ->42.67912.
draw[red,line width=dr] (0:rm pt) arc (0:360:rm pt);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


Instead of pdfmathsetmacro you can use pgfmathsetlengthmacro



documentclassstandalone
usepackagetikz
begindocument

defri1.0cm % define inner diameter
defro2.0cm % define outer diameter

begintikzpicture
pgfmathsetlengthmacrodrro-ri % compute width
pgfmathsetlengthmacrorm(ri+ro)/2 % compute mean diameter
showrm % > rm=macro: ->42.67912pt.
draw[red,line width=dr] (0:rm) arc (0:360:rm);
draw[black] (0,0) circle (ro) circle (ri);
endtikzpicture

enddocument


enter image description here






share|improve this answer
































    2














    Very simple: divide or multiply by 1cm. That way you can work in any units you like, such as cm. (I do not recommend using rm for a macro name, though.)



    documentclassstandalone
    usepackagetikz
    begindocument

    defri1.0cm % define inner diameter
    defro2.0cm % define outer diameter

    begintikzpicture
    pgfmathsetmacrodrro-ri % compute width
    pgfmathsetmacrorm(ri+ro)/2cm % compute mean diameter
    typeoutrm
    draw[red,line width=dr] (0:rm*1cm) arc (0:360:rm*1cm);
    draw[black] (0,0) circle (ro) circle (ri);
    endtikzpicture

    enddocument


    enter image description here






    share|improve this answer








    New contributor



    Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      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%2f504097%2fhow-to-add-units-to-results-of-pgfmathsetmacro%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      5














      pgfmathsetmacro calculates a length and gives back the result in pt but without the unit pt attached - the macro contains simply a number. So if you want to use this number in a sensible way you should reattach the pt:



      documentclassstandalone
      usepackagetikz
      begindocument

      defri1.0cm % define inner diameter
      defro2.0cm % define outer diameter

      begintikzpicture
      pgfmathsetmacrodrro-ri % compute width
      pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
      showrm %<--- shows > rm=macro: ->42.67912.
      draw[red,line width=dr] (0:rm pt) arc (0:360:rm pt);
      draw[black] (0,0) circle (ro) circle (ri);
      endtikzpicture

      enddocument


      Instead of pdfmathsetmacro you can use pgfmathsetlengthmacro



      documentclassstandalone
      usepackagetikz
      begindocument

      defri1.0cm % define inner diameter
      defro2.0cm % define outer diameter

      begintikzpicture
      pgfmathsetlengthmacrodrro-ri % compute width
      pgfmathsetlengthmacrorm(ri+ro)/2 % compute mean diameter
      showrm % > rm=macro: ->42.67912pt.
      draw[red,line width=dr] (0:rm) arc (0:360:rm);
      draw[black] (0,0) circle (ro) circle (ri);
      endtikzpicture

      enddocument


      enter image description here






      share|improve this answer





























        5














        pgfmathsetmacro calculates a length and gives back the result in pt but without the unit pt attached - the macro contains simply a number. So if you want to use this number in a sensible way you should reattach the pt:



        documentclassstandalone
        usepackagetikz
        begindocument

        defri1.0cm % define inner diameter
        defro2.0cm % define outer diameter

        begintikzpicture
        pgfmathsetmacrodrro-ri % compute width
        pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
        showrm %<--- shows > rm=macro: ->42.67912.
        draw[red,line width=dr] (0:rm pt) arc (0:360:rm pt);
        draw[black] (0,0) circle (ro) circle (ri);
        endtikzpicture

        enddocument


        Instead of pdfmathsetmacro you can use pgfmathsetlengthmacro



        documentclassstandalone
        usepackagetikz
        begindocument

        defri1.0cm % define inner diameter
        defro2.0cm % define outer diameter

        begintikzpicture
        pgfmathsetlengthmacrodrro-ri % compute width
        pgfmathsetlengthmacrorm(ri+ro)/2 % compute mean diameter
        showrm % > rm=macro: ->42.67912pt.
        draw[red,line width=dr] (0:rm) arc (0:360:rm);
        draw[black] (0,0) circle (ro) circle (ri);
        endtikzpicture

        enddocument


        enter image description here






        share|improve this answer



























          5












          5








          5







          pgfmathsetmacro calculates a length and gives back the result in pt but without the unit pt attached - the macro contains simply a number. So if you want to use this number in a sensible way you should reattach the pt:



          documentclassstandalone
          usepackagetikz
          begindocument

          defri1.0cm % define inner diameter
          defro2.0cm % define outer diameter

          begintikzpicture
          pgfmathsetmacrodrro-ri % compute width
          pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
          showrm %<--- shows > rm=macro: ->42.67912.
          draw[red,line width=dr] (0:rm pt) arc (0:360:rm pt);
          draw[black] (0,0) circle (ro) circle (ri);
          endtikzpicture

          enddocument


          Instead of pdfmathsetmacro you can use pgfmathsetlengthmacro



          documentclassstandalone
          usepackagetikz
          begindocument

          defri1.0cm % define inner diameter
          defro2.0cm % define outer diameter

          begintikzpicture
          pgfmathsetlengthmacrodrro-ri % compute width
          pgfmathsetlengthmacrorm(ri+ro)/2 % compute mean diameter
          showrm % > rm=macro: ->42.67912pt.
          draw[red,line width=dr] (0:rm) arc (0:360:rm);
          draw[black] (0,0) circle (ro) circle (ri);
          endtikzpicture

          enddocument


          enter image description here






          share|improve this answer













          pgfmathsetmacro calculates a length and gives back the result in pt but without the unit pt attached - the macro contains simply a number. So if you want to use this number in a sensible way you should reattach the pt:



          documentclassstandalone
          usepackagetikz
          begindocument

          defri1.0cm % define inner diameter
          defro2.0cm % define outer diameter

          begintikzpicture
          pgfmathsetmacrodrro-ri % compute width
          pgfmathsetmacrorm(ri+ro)/2 % compute mean diameter
          showrm %<--- shows > rm=macro: ->42.67912.
          draw[red,line width=dr] (0:rm pt) arc (0:360:rm pt);
          draw[black] (0,0) circle (ro) circle (ri);
          endtikzpicture

          enddocument


          Instead of pdfmathsetmacro you can use pgfmathsetlengthmacro



          documentclassstandalone
          usepackagetikz
          begindocument

          defri1.0cm % define inner diameter
          defro2.0cm % define outer diameter

          begintikzpicture
          pgfmathsetlengthmacrodrro-ri % compute width
          pgfmathsetlengthmacrorm(ri+ro)/2 % compute mean diameter
          showrm % > rm=macro: ->42.67912pt.
          draw[red,line width=dr] (0:rm) arc (0:360:rm);
          draw[black] (0,0) circle (ro) circle (ri);
          endtikzpicture

          enddocument


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 9 hours ago









          Ulrike FischerUlrike Fischer

          212k9 gold badges320 silver badges719 bronze badges




          212k9 gold badges320 silver badges719 bronze badges


























              2














              Very simple: divide or multiply by 1cm. That way you can work in any units you like, such as cm. (I do not recommend using rm for a macro name, though.)



              documentclassstandalone
              usepackagetikz
              begindocument

              defri1.0cm % define inner diameter
              defro2.0cm % define outer diameter

              begintikzpicture
              pgfmathsetmacrodrro-ri % compute width
              pgfmathsetmacrorm(ri+ro)/2cm % compute mean diameter
              typeoutrm
              draw[red,line width=dr] (0:rm*1cm) arc (0:360:rm*1cm);
              draw[black] (0,0) circle (ro) circle (ri);
              endtikzpicture

              enddocument


              enter image description here






              share|improve this answer








              New contributor



              Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.

























                2














                Very simple: divide or multiply by 1cm. That way you can work in any units you like, such as cm. (I do not recommend using rm for a macro name, though.)



                documentclassstandalone
                usepackagetikz
                begindocument

                defri1.0cm % define inner diameter
                defro2.0cm % define outer diameter

                begintikzpicture
                pgfmathsetmacrodrro-ri % compute width
                pgfmathsetmacrorm(ri+ro)/2cm % compute mean diameter
                typeoutrm
                draw[red,line width=dr] (0:rm*1cm) arc (0:360:rm*1cm);
                draw[black] (0,0) circle (ro) circle (ri);
                endtikzpicture

                enddocument


                enter image description here






                share|improve this answer








                New contributor



                Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.























                  2












                  2








                  2







                  Very simple: divide or multiply by 1cm. That way you can work in any units you like, such as cm. (I do not recommend using rm for a macro name, though.)



                  documentclassstandalone
                  usepackagetikz
                  begindocument

                  defri1.0cm % define inner diameter
                  defro2.0cm % define outer diameter

                  begintikzpicture
                  pgfmathsetmacrodrro-ri % compute width
                  pgfmathsetmacrorm(ri+ro)/2cm % compute mean diameter
                  typeoutrm
                  draw[red,line width=dr] (0:rm*1cm) arc (0:360:rm*1cm);
                  draw[black] (0,0) circle (ro) circle (ri);
                  endtikzpicture

                  enddocument


                  enter image description here






                  share|improve this answer








                  New contributor



                  Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  Very simple: divide or multiply by 1cm. That way you can work in any units you like, such as cm. (I do not recommend using rm for a macro name, though.)



                  documentclassstandalone
                  usepackagetikz
                  begindocument

                  defri1.0cm % define inner diameter
                  defro2.0cm % define outer diameter

                  begintikzpicture
                  pgfmathsetmacrodrro-ri % compute width
                  pgfmathsetmacrorm(ri+ro)/2cm % compute mean diameter
                  typeoutrm
                  draw[red,line width=dr] (0:rm*1cm) arc (0:360:rm*1cm);
                  draw[black] (0,0) circle (ro) circle (ri);
                  endtikzpicture

                  enddocument


                  enter image description here







                  share|improve this answer








                  New contributor



                  Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.








                  share|improve this answer



                  share|improve this answer






                  New contributor



                  Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.








                  answered 51 mins ago









                  HamanostorosHamanostoros

                  411 bronze badge




                  411 bronze badge




                  New contributor



                  Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




                  New contributor




                  Hamanostoros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.
































                      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%2f504097%2fhow-to-add-units-to-results-of-pgfmathsetmacro%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

                      Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                      Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                      Ласкавець круглолистий Зміст Опис | Поширення | Галерея | Примітки | Посилання | Навігаційне меню58171138361-22960890446Bupleurum rotundifoliumEuro+Med PlantbasePlants of the World Online — Kew ScienceGermplasm Resources Information Network (GRIN)Ласкавецькн. VI : Літери Ком — Левиправивши або дописавши її