| View Issue Details [ Jump to Notes ] | [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0003671 | VTK | (No Category) | public | 2006-08-29 12:14 | 2016-08-12 09:54 |
|
| Reporter | Sean McInerney | |
| Assigned To | Kitware Robot | |
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | moved | |
| Platform | | OS | | OS Version | |
| Product Version | | |
| Target Version | | Fixed in Version | | |
|
| Summary | 0003671: vtkPropPicker picks at untransformed position with vtkImageMapper |
| Description | vtkPropPicker does not pick at the proper transformed position of vtkActor2D paired with vtkImageMapper. Picking always occurs at the untransformed position of the prop. This problem is not seen when picking PolyData. |
| Tags | No tags attached. |
|
| Project | |
| Type | |
|
| Attached Files | PropPickerTest.cxx [^] (4,054 bytes) 1969-12-31 19:00
CMakeLists.txt [^] (596 bytes) 1969-12-31 19:00 [Show Content] [Hide Content]SET (LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin CACHE PATH
"Output directory for building all libraries.")
SET (EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin CACHE PATH
"Output directory for building all executables.")
MARK_AS_ADVANCED (LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH)
FIND_PACKAGE (VTK)
IF (VTK_FOUND)
INCLUDE (${VTK_USE_FILE})
ELSE (VTK_FOUND)
MESSAGE (SEND_ERROR "VTK package not found!")
SET (CAN_BUILD 0)
ENDIF (VTK_FOUND)
ADD_EXECUTABLE (PropPickerTest PropPickerTest.cxx)
TARGET_LINK_LIBRARIES (PropPickerTest vtkRendering vtkGraphics vtkImaging)
|
|