buoreox.blogg.se

Javascript mouse coords
Javascript mouse coords





javascript mouse coords

I have tried several different examples to get the +X and -Y position of the mouse (with respect to the origin of the scene) as 3D coordinates and not 2D DOM coordinates since some design elements would have a position X,Y (CSS top,left) greater than the current view-port of the device they were on. This way my end users would not have to re-learn or re-design their projects that were based on the 0,0 index always being in the top-left, rather than the center. Then I would just multiply the -Y by -1 to get a +Y and divide +X and +Y by 12 and floor each to get the corresponding cell index as if it were still an HTML table.

javascript mouse coords

My goal is to confine designs to the 4th quadrant (+X,-Y).

JAVASCRIPT MOUSE COORDS SERIES

The “table” is drawn as a series of THREE.Lines spaced 12 points apart from one another. The user would be shown the current “cell ” for reference.

javascript mouse coords

In picture below, the camera and orbit controls are shifted so that the origin (0,0,0 ) is in the top-left (DOM style), rather than the center. Some designs have hundreds, if not a thousand individual 12x12 pixel elements all being rendered at the same time. In the other application that used these designs, the table was not rendered which helped increase performance but still took its toll on mobile devices when the designs became very large (sometimes extending folds beyond the view-port). The table was only used for position referencing. I’m re-writing an existing application where a user would click cells in an HTML table and place predefined design items in them and then save that design to be used in another application.







Javascript mouse coords