JDK-8124507 : Cannot pick Node with translateZ
  • Type: Bug
  • Component: javafx
  • Sub-Component: scenegraph
  • Affected Version: 8
  • Priority: P3
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2013-02-05
  • Updated: 2015-06-17
  • Resolved: 2013-05-13
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8
8Resolved
Related Reports
Duplicate :  
Description
Create a rectangle, put it into a group, call setTranslateZ(10) on the rectangle. With the default parallel camera, the rectangle cannot be picked.
Comments
Duplicates RT-28446.
13-05-2013

The picking is stopped by group's bounds check, because bounds are on z=50 and we test pick point [x, y] with an implicit z=0, so containsBounds() returns false.
05-02-2013