MantisBT - VTK
View Issue Details
0013038VTK(No Category)public2012-03-28 05:172013-07-22 16:39
Jerome Velut 
Dave DeMarle 
normalminorhave not tried
closedwon't fix 
5.8.0 
 
TBD
incorrect functionality
0013038: High scale geometry doesn't render above MAX_FLOAT / 1e19
A simple triangle doesn't render when its points are located at positions farer than MAX_FLOAT / 1e19. The attached cxx file and CMakeLists.txt reproduce the bug.

No tags attached.
zip TestGeometry.zip (1,798) 2012-03-28 05:17
https://www.vtk.org/Bug/file/9140/TestGeometry.zip
Issue History
2012-03-28 05:17Jerome VelutNew Issue
2012-03-28 05:17Jerome VelutFile Added: TestGeometry.zip
2013-06-05 10:30Jean-Christophe Fillion-RobinNote Added: 0030887
2013-06-05 10:32Jean-Christophe Fillion-RobinNote Edited: 0030887bug_revision_view_page.php?bugnote_id=30887#r610
2013-07-22 16:34Dave DeMarleAssigned To => Dave DeMarle
2013-07-22 16:34Dave DeMarleStatusbacklog => todo
2013-07-22 16:35Dave DeMarleStatustodo => active development
2013-07-22 16:39Dave DeMarleNote Added: 0031171
2013-07-22 16:39Dave DeMarleStatusactive development => closed
2013-07-22 16:39Dave DeMarleResolutionopen => won't fix

Notes
(0030887)
Jean-Christophe Fillion-Robin   
2013-06-05 10:30   
(edited on: 2013-06-05 10:32)
Problem still happen with VTK-6 (384636e), here is the updated CMakeLists.txt:

######################################
project(TestGeometry)
cmake_minimum_required(VERSION 2.8.10)

find_package(VTK COMPONENTS
  vtkCommonCore
  vtkCommonDataModel
  vtkRenderingCore
  vtkRenderingOpenGL REQUIRED)
include(${VTK_USE_FILE})

add_executable( SyntheticPolyData SyntheticPolyData.cxx )
target_link_libraries( SyntheticPolyData ${VTK_LIBRARIES} )
######################################

(0031171)
Dave DeMarle   
2013-07-22 16:39   
I believe this is the longstanding 32 bit GL problem, in which values that are out of range can not be rendered correctly by GL, and thus can not be rendered by VTK.