Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
501 views

Mapping from 2D projection back to 3D point cloud

I have a 3D model consisting of point vertices (XYZ) and eventually triangular faces. Using OpenGL or camera-view-matrix-projection I can project the 3D model to a 2D plane, i.e. a view window or an ...
3
votes
1answer
192 views

Is there any way to hit test for a disabled control?

I'm trying to detect the control under the mouse cursor, regardless of whether the control is enabled or not. VisualTreeHelper.FindElementsInHostCoordinates ignores controls that have their IsEnabled ...
1
vote
1answer
953 views

Can I set IsHitTestVisible to false only for right-button events?

Obviously, the straightforward answer to the question is "No", but what's the best way for me to achieve that kind of effect? To explain, here's a bit of background... I have an app that displays an ...
0
votes
0answers
71 views

iOS retains views tree on hit testing?

I have a "mysterious" retain in my app and I was able to reproduce it in simplification. I have a view hierarchy as follows: Base view (UIView) : Main view (UIView) : Button1 (UIRectButton) ...
0
votes
1answer
113 views

Actionscript 3.0 MovieClip hit test

I have a MovieClip. It represents animation of jumping monster. For clearness, let's pretend there are only 2 frames: the first one occupies top left rectangle (x = 0, y = 0, w = 70, h = 70) and the ...
0
votes
1answer
126 views

reduce the area for hittestobject - flash cs5

I'm making a simple snake game in as3. the problem I'm having is that the stroke on elements slightly overlap thus when the snake passes by the apple in an adjacent square it triggers hit test object. ...
0
votes
2answers
4k views

Using hit-test bouncing ball in action script 3

I have this code which makes the ball bounce, but what I am looking for is to shoot bullets from the ground and once they hit the ball they should bounce it back upwards. The goal is not to let the ...