View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0000840VTK(No Category)public2004-05-13 16:102011-01-13 17:00
ReporterMathieu Malaterre 
Assigned ToMathieu Malaterre 
PrioritylowSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0000840: vtkDEMReader bug
DescriptionIn vtkDEMReader, the origin is being set twice in the following lines of
code:

  //
  // get the origin from the ground coordinates
  //
  origin[0] = this->GroundCoords[VTK_SW][0];
  origin[1] = this->GroundCoords[VTK_SW][1];
  origin[2] = this->ElevationBounds[0];
  origin[0] = 0;
  origin[1] = 0;
  origin[2] = 0;

I believe this should just be:

  //
  // get the origin from the ground coordinates
  //
  origin[0] = this->GroundCoords[VTK_SW][0];
  origin[1] = this->GroundCoords[VTK_SW][1];
  origin[2] = this->ElevationBounds[0];
TagsNo tags attached.
Project
Type
Attached Files

 Relationships

  Notes
(0001044)
Mathieu Malaterre (developer)
2004-05-14 11:10

Checking in vtkDEMReader.cxx;
/cvsroot/VTK/VTK/IO/vtkDEMReader.cxx,v <-- vtkDEMReader.cxx
new revision: 1.33; previous revision: 1.32
done

 Issue History
Date Modified Username Field Change
2010-11-29 17:59 Mathieu Malaterre Source_changeset_attached => VTK master 992d61e9
2011-01-13 17:00 Source_changeset_attached => VTK master a2bd8391
2011-01-13 17:00 Source_changeset_attached => VTK master 020ef709
2011-06-16 13:11 Zack Galbreath Category => (No Category)


Copyright © 2000 - 2018 MantisBT Team