I have a couple of 3D objects in OpenGL in a processing sketch and I need to find out if the mouse is hovering over those objects. Since there is constant transformation I can't compare the original coordinates and size to the mouse position. I already found the screenX() and screenY() methods which return the translated screen coordinates after transformation and translation but I would still need to get the displayed size after rotation.
Get screen coordinates and size of OpenGL 3D Object after transformation
1.6k views Asked by matteok At
1
There are 1 answers
Related Questions in OPENGL
- How to fix "Access violation executing location" when using GLFW and GLAD
- getting Access violation writing location when calling glDrawElements caused by shader
- Experimenting with GLFW library: window boundary problem and normalized coordinates
- OpenGL Framebuffer/FBO RTT subpixel movement discrepancy
- Why isn't my glfw window showing anything?
- How can glPushMatrix affect the rotation of an object around a rotating object?
- g++ / vscode apparently cannot see my src folder? "cc1plus.exe: fatal error: src/glad.c No such file or directory"
- Does addition-assignment cause dependency chain in GLSL?
- Compiling C++ program with Opengl and Glut in windows
- Using Silk.NET in WinForms
- What happens when rendering an OpenGL buffer that has been padded with NULL (or another value)?
- How can I make a sphere follow an eight-like path in Python using OpenGL?
- OpenGL only rendering second triangle, first triangle not visible
- OpenGL shows black texture on quad
- My Visual Studio 2022 consistently gives me errors saying that the GLchar variable type is undefined
Related Questions in 3D
- Issues with a rotation gizmo and sign flips when converting back to euler angles
- coded one, but renderer renders two 3D models in three.js
- WorldToScreen function
- Sweep shape along 3D path in Python
- How to add another panel or window to the open3d.visualization.O3DVisualizer class? (In python open3d)
- How to estimate the memory size of a binary voxelized geometry?
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- A way to warp an image based on a map
- 3D surface won't show data on plotly
- Creating 3D python data from index sums of 2D data
- 3D graph in Rstudio (time vs intensity vs coefficient)
- Combining multiple plots with mayavi
- JavaFX 3D API does not work on all Android deivces
- Manual retargeting - How to compute target pose bone positions correctly?
- How do I dynamically change vertex colors using Direct3d 12 and Visual C++?
Related Questions in PROCESSING
- Processing substitute long variables for something shorter
- How do I shuffle these blocks and make a win/loss game-state?
- How to read and process big csv file fast and keep memory usage low in java?
- Why does the shadow appear above the image in this p5.js code?
- How to fix rendering issue when rotating an arc in processing?
- Kinect V1 not connecting to Kinect Studio v1.8.0
- How to create a 2d top-down movement system where moving while holding two keys is possible in processing?
- How to fix the problem on converting ShaderToy color to Processing?
- 2d UI elements in a 3d environment in Processing
- Using A* to Create Procedurally Generated Rooms in Processing
- Having some issues with Void Draw in Processing
- Understanding NAudio and converting buffer to floats
- Processing ZoomOut
- I struggle with a basic feedback delay network
- i cant seem to find the syntaxerror in setup and draw in this flowfield sketch
Related Questions in TRANSFORMATION
- Can't use panel with transformation as source panel
- How can I get the inverse Transformation of in 2D
- Camera rotation to direction vector
- Transform a JSON array by Jolt into a new JSON object and keep objects separate
- Power Bi, colums to rows
- Jolt Transformation - keep JSON structure even if object is empty
- How can I apply image registration to images and their annotations with opencv?
- How to reshape this database in Excel or R
- Can you create custom VS Code snippets variables?
- how to do Transformation in vtklinewidget
- ADF Flatten transformation - can't select unroll by
- Reverse function to obtain original input values
- Delay observed between two moving sublayers
- transform data set in R from stacked months and years for multiple sites to sites with columns of year-month
- Jolt transform from a Map<Person, list<Property>, List<Feature>> to Map<Property, Map<Feature, List<Person>>>
Related Questions in SCREEN-POSITIONING
- How do I stop my text from moving up with my table (CSS)?
- C# Winforms: How to get CenterParent with SubForms and ModalForms to function?
- JS Tooltip Positioning Flicker
- Get scroll position of ViewCell inside ListView Xamarin Form
- complicated background image positioning for all devices
- Positioning an image at a specific X and Y location not consistent between tablets
- How can I print a countdown clock on screen on the same line and position (i.e. new number overwrited previous)
- div has empty space on top with display:inline-block
- percentage positioning (google example)
- Scattered unordered list
- ioS change button images to fill up the screen for iphone 3.5 inch and iphone 4 inch
- Why does this not draw on the top 20 or so pixels of a full screen window?
- How do I keep keep my view from displaying off screen in iOS7?
- Multiple canvas layers positioning HTML5
- Get screen coordinates and size of OpenGL 3D Object after transformation
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Determining which object the mouse is over is called picking and there are 2 main approaches:
From reading your description option 1 would probably be simpler and do what you need.