What is a raycast?Would Raycast suffice for a game clock based on sun position?Using Physics.Raycast inside OnCollisionEnter2D functionUnity3D - Determining if a spherical object is grounded using raycastScript no longer working now that it is attached to a child object. Why is this?Unity - UI Raycast Hits ProblemWhat is a faster alternative to a GetComponent from a RaycastHit?undetected colissionRaycast in Unity for ground detection returns false while touching groundHow can I convert Physics2D.Raycast to Physics2D.BoxCast to yield the same results?

Why are the inside diameters of some pipe larger than the stated size?

Does the United States guarantee any unique freedoms?

How to mark beverage cans in a cooler for a blind person?

Does two puncture wounds mean venomous snake?

How can I iterate this process?

Invert bits of binary representation of number

Ordering a word list

In Pokémon Go, why does one of my Pikachu have an option to evolve, but another one doesn't?

Can I call myself an assistant professor without a PhD?

Max Order of an Isogeny Class of Rational Elliptic Curves is 8?

What is my malfunctioning AI harvesting from humans?

How to use grep to search through the --help output?

How many different ways are there to checkmate in the early game?

Write an interpreter for *

Drawing complex inscribed and circumscribed polygons in TikZ

sed delete all the words before a match

Non-OR journals which regularly publish OR research

Can I legally make a real mobile app based on a fictional app from a TV show?

Word or idiom defining something barely functional

Why did Gandalf use a sword against the Balrog?

Why doesn't the "actual" path matter for line integrals?

Was the 2019 Lion King film made through motion capture?

What is a raycast?

A stranger from Norway wants to have money delivered to me



What is a raycast?


Would Raycast suffice for a game clock based on sun position?Using Physics.Raycast inside OnCollisionEnter2D functionUnity3D - Determining if a spherical object is grounded using raycastScript no longer working now that it is attached to a child object. Why is this?Unity - UI Raycast Hits ProblemWhat is a faster alternative to a GetComponent from a RaycastHit?undetected colissionRaycast in Unity for ground detection returns false while touching groundHow can I convert Physics2D.Raycast to Physics2D.BoxCast to yield the same results?






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








1












$begingroup$


I use this script to build buildings on my terrain, and it works with the collider somehow. But I don't understand what it is that the raycast does to find the right place to put my building.



Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if (Physics.Raycast(ray, out hitInfo))

farmhide.transform.position = hitInfo.point;

farmhide.transform.rotation = Quaternion.FromToRotation(Vector3.up, hitInfo.normal);



What is it that this code is doing?










share|improve this question











$endgroup$













  • $begingroup$
    A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
    $endgroup$
    – Justin Markwell
    7 hours ago











  • $begingroup$
    Is there a way to make it work with Tag It works with all Collider in Scene
    $endgroup$
    – NADER LABBAD
    7 hours ago










  • $begingroup$
    you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
    $endgroup$
    – Justin Markwell
    7 hours ago










  • $begingroup$
    so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
    $endgroup$
    – NADER LABBAD
    7 hours ago











  • $begingroup$
    for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
    $endgroup$
    – Justin Markwell
    7 hours ago

















1












$begingroup$


I use this script to build buildings on my terrain, and it works with the collider somehow. But I don't understand what it is that the raycast does to find the right place to put my building.



Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if (Physics.Raycast(ray, out hitInfo))

farmhide.transform.position = hitInfo.point;

farmhide.transform.rotation = Quaternion.FromToRotation(Vector3.up, hitInfo.normal);



What is it that this code is doing?










share|improve this question











$endgroup$













  • $begingroup$
    A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
    $endgroup$
    – Justin Markwell
    7 hours ago











  • $begingroup$
    Is there a way to make it work with Tag It works with all Collider in Scene
    $endgroup$
    – NADER LABBAD
    7 hours ago










  • $begingroup$
    you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
    $endgroup$
    – Justin Markwell
    7 hours ago










  • $begingroup$
    so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
    $endgroup$
    – NADER LABBAD
    7 hours ago











  • $begingroup$
    for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
    $endgroup$
    – Justin Markwell
    7 hours ago













1












1








1





$begingroup$


I use this script to build buildings on my terrain, and it works with the collider somehow. But I don't understand what it is that the raycast does to find the right place to put my building.



Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if (Physics.Raycast(ray, out hitInfo))

farmhide.transform.position = hitInfo.point;

farmhide.transform.rotation = Quaternion.FromToRotation(Vector3.up, hitInfo.normal);



What is it that this code is doing?










share|improve this question











$endgroup$




I use this script to build buildings on my terrain, and it works with the collider somehow. But I don't understand what it is that the raycast does to find the right place to put my building.



Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if (Physics.Raycast(ray, out hitInfo))

farmhide.transform.position = hitInfo.point;

farmhide.transform.rotation = Quaternion.FromToRotation(Vector3.up, hitInfo.normal);



What is it that this code is doing?







unity c# raycasting collider






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 7 hours ago









DMGregory

70.3k16 gold badges126 silver badges195 bronze badges




70.3k16 gold badges126 silver badges195 bronze badges










asked 8 hours ago









NADER LABBADNADER LABBAD

84 bronze badges




84 bronze badges














  • $begingroup$
    A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
    $endgroup$
    – Justin Markwell
    7 hours ago











  • $begingroup$
    Is there a way to make it work with Tag It works with all Collider in Scene
    $endgroup$
    – NADER LABBAD
    7 hours ago










  • $begingroup$
    you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
    $endgroup$
    – Justin Markwell
    7 hours ago










  • $begingroup$
    so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
    $endgroup$
    – NADER LABBAD
    7 hours ago











  • $begingroup$
    for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
    $endgroup$
    – Justin Markwell
    7 hours ago
















  • $begingroup$
    A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
    $endgroup$
    – Justin Markwell
    7 hours ago











  • $begingroup$
    Is there a way to make it work with Tag It works with all Collider in Scene
    $endgroup$
    – NADER LABBAD
    7 hours ago










  • $begingroup$
    you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
    $endgroup$
    – Justin Markwell
    7 hours ago










  • $begingroup$
    so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
    $endgroup$
    – NADER LABBAD
    7 hours ago











  • $begingroup$
    for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
    $endgroup$
    – Justin Markwell
    7 hours ago















$begingroup$
A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
$endgroup$
– Justin Markwell
7 hours ago





$begingroup$
A Raycast will cast the ray. the hit will be the object that the ray contacts. you can retrieve the point in space where that hit intersects by getting the hit.point. the collider is the collider that is attached to the object you hit with the ray and can be retrieved with hit.collider check out the Unity documentation for Raycasthit.collider
$endgroup$
– Justin Markwell
7 hours ago













$begingroup$
Is there a way to make it work with Tag It works with all Collider in Scene
$endgroup$
– NADER LABBAD
7 hours ago




$begingroup$
Is there a way to make it work with Tag It works with all Collider in Scene
$endgroup$
– NADER LABBAD
7 hours ago












$begingroup$
you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
$endgroup$
– Justin Markwell
7 hours ago




$begingroup$
you can add a check for a tag if need be. it would be something like if(hit.collider.gameObject.tag == "Tag")//DoStuff
$endgroup$
– Justin Markwell
7 hours ago












$begingroup$
so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
$endgroup$
– NADER LABBAD
7 hours ago





$begingroup$
so Anything crouse Touch any GameObject = hit and hit have Collider from GameObject
$endgroup$
– NADER LABBAD
7 hours ago













$begingroup$
for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
$endgroup$
– Justin Markwell
7 hours ago




$begingroup$
for the most part that will be true. You can also specify layers that the raycast will not interact with also but otherwise yes the Ray will will hit objects that have a collider attached
$endgroup$
– Justin Markwell
7 hours ago










1 Answer
1






active

oldest

votes


















2












$begingroup$

A raycast is like shining a laser pointer in your scene, to see what the laser hits.



It takes a starting point and a direction as input (together, they make a "ray").



The physics engine takes this point and sweeps it along that direction. As it goes, it searches through all the physics colliders in your scene to check whether the point hits any of them during its travel.



(This is a simplification - in reality the engine has lots of clever acceleration structures and math so it can do this efficiently without looking at every collider or checking every point along the line one by one)



If it finds a collider that's in the path of the travelling point, it returns "true," meaning "yes, I found a hit." If you've provided an out RaycastHit parameter, it will store information about the first hit - the closest object along the ray.



From that RaycastHit, you can learn a lot about the intersection:



  • hitInfo.collider will give you the Collider component that the ray hit. You can use this to get the hit object's GameObject and check its tag with hitInfo.collider.gameObject.CompareTag("someTag"), for example.


  • hitInfo.point will tell you the position in world space where the ray hit the surface of the collider.


  • hitInfo.normal will tell you the direction that the surface of the collider is facing at the point you hit. Your script uses this to orient the buildings to point directly out from the ground, instead of diagonal to the surface.


  • hitInfo.rigidbody will give you the physics Rigidbody that owns the collider you hit, if it was a dynamic or kinematic object.


  • etc.


If you don't want to search every collider in your scene, one of the best ways to control the raycast is to use Physics Layers.



You can expose a public LayerMask raycastLayers; variable in your script, so you can choose in the Inspector which physics layers you're interested in.



Then you can modify your raycast like so:



bool hitSomething = Physics.Raycast(
ray, // Point + direction to sweep
out hitInfo, // Destination for hit information
float.positiveInfinity, // Change this to limit the ray length
raycastLayers, // Only hit colliders on these layers
QueryTriggerInteraction.Ignore // Ignore trigger colliders
);

if (hitSomething) {...


This is more efficient than checking for specific tags, because it lets you filter out false positives at the source.






share|improve this answer









$endgroup$

















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "53"
    ;
    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%2fgamedev.stackexchange.com%2fquestions%2f174514%2fwhat-is-a-raycast%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2












    $begingroup$

    A raycast is like shining a laser pointer in your scene, to see what the laser hits.



    It takes a starting point and a direction as input (together, they make a "ray").



    The physics engine takes this point and sweeps it along that direction. As it goes, it searches through all the physics colliders in your scene to check whether the point hits any of them during its travel.



    (This is a simplification - in reality the engine has lots of clever acceleration structures and math so it can do this efficiently without looking at every collider or checking every point along the line one by one)



    If it finds a collider that's in the path of the travelling point, it returns "true," meaning "yes, I found a hit." If you've provided an out RaycastHit parameter, it will store information about the first hit - the closest object along the ray.



    From that RaycastHit, you can learn a lot about the intersection:



    • hitInfo.collider will give you the Collider component that the ray hit. You can use this to get the hit object's GameObject and check its tag with hitInfo.collider.gameObject.CompareTag("someTag"), for example.


    • hitInfo.point will tell you the position in world space where the ray hit the surface of the collider.


    • hitInfo.normal will tell you the direction that the surface of the collider is facing at the point you hit. Your script uses this to orient the buildings to point directly out from the ground, instead of diagonal to the surface.


    • hitInfo.rigidbody will give you the physics Rigidbody that owns the collider you hit, if it was a dynamic or kinematic object.


    • etc.


    If you don't want to search every collider in your scene, one of the best ways to control the raycast is to use Physics Layers.



    You can expose a public LayerMask raycastLayers; variable in your script, so you can choose in the Inspector which physics layers you're interested in.



    Then you can modify your raycast like so:



    bool hitSomething = Physics.Raycast(
    ray, // Point + direction to sweep
    out hitInfo, // Destination for hit information
    float.positiveInfinity, // Change this to limit the ray length
    raycastLayers, // Only hit colliders on these layers
    QueryTriggerInteraction.Ignore // Ignore trigger colliders
    );

    if (hitSomething) {...


    This is more efficient than checking for specific tags, because it lets you filter out false positives at the source.






    share|improve this answer









    $endgroup$



















      2












      $begingroup$

      A raycast is like shining a laser pointer in your scene, to see what the laser hits.



      It takes a starting point and a direction as input (together, they make a "ray").



      The physics engine takes this point and sweeps it along that direction. As it goes, it searches through all the physics colliders in your scene to check whether the point hits any of them during its travel.



      (This is a simplification - in reality the engine has lots of clever acceleration structures and math so it can do this efficiently without looking at every collider or checking every point along the line one by one)



      If it finds a collider that's in the path of the travelling point, it returns "true," meaning "yes, I found a hit." If you've provided an out RaycastHit parameter, it will store information about the first hit - the closest object along the ray.



      From that RaycastHit, you can learn a lot about the intersection:



      • hitInfo.collider will give you the Collider component that the ray hit. You can use this to get the hit object's GameObject and check its tag with hitInfo.collider.gameObject.CompareTag("someTag"), for example.


      • hitInfo.point will tell you the position in world space where the ray hit the surface of the collider.


      • hitInfo.normal will tell you the direction that the surface of the collider is facing at the point you hit. Your script uses this to orient the buildings to point directly out from the ground, instead of diagonal to the surface.


      • hitInfo.rigidbody will give you the physics Rigidbody that owns the collider you hit, if it was a dynamic or kinematic object.


      • etc.


      If you don't want to search every collider in your scene, one of the best ways to control the raycast is to use Physics Layers.



      You can expose a public LayerMask raycastLayers; variable in your script, so you can choose in the Inspector which physics layers you're interested in.



      Then you can modify your raycast like so:



      bool hitSomething = Physics.Raycast(
      ray, // Point + direction to sweep
      out hitInfo, // Destination for hit information
      float.positiveInfinity, // Change this to limit the ray length
      raycastLayers, // Only hit colliders on these layers
      QueryTriggerInteraction.Ignore // Ignore trigger colliders
      );

      if (hitSomething) {...


      This is more efficient than checking for specific tags, because it lets you filter out false positives at the source.






      share|improve this answer









      $endgroup$

















        2












        2








        2





        $begingroup$

        A raycast is like shining a laser pointer in your scene, to see what the laser hits.



        It takes a starting point and a direction as input (together, they make a "ray").



        The physics engine takes this point and sweeps it along that direction. As it goes, it searches through all the physics colliders in your scene to check whether the point hits any of them during its travel.



        (This is a simplification - in reality the engine has lots of clever acceleration structures and math so it can do this efficiently without looking at every collider or checking every point along the line one by one)



        If it finds a collider that's in the path of the travelling point, it returns "true," meaning "yes, I found a hit." If you've provided an out RaycastHit parameter, it will store information about the first hit - the closest object along the ray.



        From that RaycastHit, you can learn a lot about the intersection:



        • hitInfo.collider will give you the Collider component that the ray hit. You can use this to get the hit object's GameObject and check its tag with hitInfo.collider.gameObject.CompareTag("someTag"), for example.


        • hitInfo.point will tell you the position in world space where the ray hit the surface of the collider.


        • hitInfo.normal will tell you the direction that the surface of the collider is facing at the point you hit. Your script uses this to orient the buildings to point directly out from the ground, instead of diagonal to the surface.


        • hitInfo.rigidbody will give you the physics Rigidbody that owns the collider you hit, if it was a dynamic or kinematic object.


        • etc.


        If you don't want to search every collider in your scene, one of the best ways to control the raycast is to use Physics Layers.



        You can expose a public LayerMask raycastLayers; variable in your script, so you can choose in the Inspector which physics layers you're interested in.



        Then you can modify your raycast like so:



        bool hitSomething = Physics.Raycast(
        ray, // Point + direction to sweep
        out hitInfo, // Destination for hit information
        float.positiveInfinity, // Change this to limit the ray length
        raycastLayers, // Only hit colliders on these layers
        QueryTriggerInteraction.Ignore // Ignore trigger colliders
        );

        if (hitSomething) {...


        This is more efficient than checking for specific tags, because it lets you filter out false positives at the source.






        share|improve this answer









        $endgroup$



        A raycast is like shining a laser pointer in your scene, to see what the laser hits.



        It takes a starting point and a direction as input (together, they make a "ray").



        The physics engine takes this point and sweeps it along that direction. As it goes, it searches through all the physics colliders in your scene to check whether the point hits any of them during its travel.



        (This is a simplification - in reality the engine has lots of clever acceleration structures and math so it can do this efficiently without looking at every collider or checking every point along the line one by one)



        If it finds a collider that's in the path of the travelling point, it returns "true," meaning "yes, I found a hit." If you've provided an out RaycastHit parameter, it will store information about the first hit - the closest object along the ray.



        From that RaycastHit, you can learn a lot about the intersection:



        • hitInfo.collider will give you the Collider component that the ray hit. You can use this to get the hit object's GameObject and check its tag with hitInfo.collider.gameObject.CompareTag("someTag"), for example.


        • hitInfo.point will tell you the position in world space where the ray hit the surface of the collider.


        • hitInfo.normal will tell you the direction that the surface of the collider is facing at the point you hit. Your script uses this to orient the buildings to point directly out from the ground, instead of diagonal to the surface.


        • hitInfo.rigidbody will give you the physics Rigidbody that owns the collider you hit, if it was a dynamic or kinematic object.


        • etc.


        If you don't want to search every collider in your scene, one of the best ways to control the raycast is to use Physics Layers.



        You can expose a public LayerMask raycastLayers; variable in your script, so you can choose in the Inspector which physics layers you're interested in.



        Then you can modify your raycast like so:



        bool hitSomething = Physics.Raycast(
        ray, // Point + direction to sweep
        out hitInfo, // Destination for hit information
        float.positiveInfinity, // Change this to limit the ray length
        raycastLayers, // Only hit colliders on these layers
        QueryTriggerInteraction.Ignore // Ignore trigger colliders
        );

        if (hitSomething) {...


        This is more efficient than checking for specific tags, because it lets you filter out false positives at the source.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 7 hours ago









        DMGregoryDMGregory

        70.3k16 gold badges126 silver badges195 bronze badges




        70.3k16 gold badges126 silver badges195 bronze badges






























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Game Development 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.

            Use MathJax to format equations. MathJax reference.


            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%2fgamedev.stackexchange.com%2fquestions%2f174514%2fwhat-is-a-raycast%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 : Літери Ком — Левиправивши або дописавши її