Jump to content

Getting the rotation of facet


fort
 Share

Recommended Posts

Hey guys,

I'm thinking there's a really simple answer to this, but I'm currently blanking on it. Basically, I'm trying to position/rotate a cylinder such that it is perpendicular to a given facet. 

Here's the PG: https://www.babylonjs-playground.com/#U8ZVF8

It looks like it works for facets on part of the sphere (maybe?), but there's clearly something I'm missing.

 

Thanks in advance!

Link to comment
Share on other sites

Hello,

Something like this?

https://www.babylonjs-playground.com/#U8ZVF8#1

scene.onPointerMove = function(evt) {
       var pickResult = scene.pick(scene.pointerX, scene.pointerY);
        if (pickResult.hit) {
            var pickNormal = pickResult.getNormal();
            tracker.position = pickResult.pickedPoint;
            if(tracker.position.y > 0)
                tracker.rotation = BABYLON.Vector3.Up().add(pickNormal); 
            if(tracker.position.y < 0)    
                tracker.rotation = BABYLON.Vector3.Up().subtract(pickNormal);            
        }
    }

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...