Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1078123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:40:39+00:00 2026-05-16T21:40:39+00:00

I’d like to compute the intersection between a ray and the models the user

  • 0

I’d like to compute the intersection between a ray and the models the user sees on the screen of my app. I’m following the OpenGL guide but I have many models in the scene that I draw independently and dynamically in a push-pop context applying a translate to the current modelview matrix (ie for each model I do a

glPushMatrix,

glTranslatef,

draw the model,

glPopMatrix
).

Do I need to compute also different rays, one for each object (for testing later if it intersects with the model’s bounding sphere)?

Maybe some concept about ray picking is not so clear to me yet. Any link, guide, etc will be very appreciated ^^

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:40:40+00:00Added an answer on May 16, 2026 at 9:40 pm

    The picking ray has nothing to do with the model matrix. If the objects in your scene move (i.e. the model matrices change), the ray itself won’t move.

    Which method do you plan to use between those proposed in the link ? GL_SELECTION, rendering with a special color, home-made intersections ?

    I’ll edit this answer accordingly

    EDIT : let’s go for the home-made one then

    First, you need to generate a ray. You usually want to express it in world space (i.e. “my ray starts at the same pos than my camera, and its dir is (xyz) ). You have two methods to do that, which are pretty well explained in the openGL Faq (One way to generate a pick ray… Another method…). Just copy ‘n paste the code.

    If the mouse is in the middle of the screen, you should have your ray pointing towards the same direction than your camera. You can check that with your arguments to gluLookAt.

    Now, what you want to do is intersect your ray with your meshes’ triangles, but you have a problem, because the triangles are not expressed in the same system than the ray.

    So you have to express the ray in the triangle’s system.

    triangles system : the model system ; ray system : the world system. Fortunately, you have a matrix to go from model to world (the Model matrix, the one you set after your glPushMatrix). So inverse(ModelMatrix) is the matrix from world to matrix.

    ray = Ray(cam_pos, dir);
    foreach (mesh)
        ModelMatrix = whatever you want
        InverseModelMatrix = inverse(ModelMatrix)
        rayInModelSpace = Ray(InverseModelMatrix x ray.pos, InverseModelMatrix x ray.dir)
        Intersect(rayInModelSpace, mesh)
    

    Your Intersect method could look like this :

    foreach (triangle in mesh )
        if ray.intersect(triangle) return true
    

    triangle-ray intersection code can be found at geometrictools.com

    This will be quite slow, but it will work. There are several ways to improve the preformance, but the easiest is to compute the AABB of each mesh, and first intersect the ray with the AABB. No intersection with the AABB => no intersection with the mesh

    Code can be found on geometrictools too.

    I’ll be away for a few days, so good luck 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.