Skip to content
Snippets Groups Projects
Commit 1dfe95d3 authored by David Gobbi's avatar David Gobbi
Browse files

BUG: The Write() method was modifying the input's origin.

Change-Id: I2be1dafef75133771c3439d7ec07c9aecbd1e19a
parent 65a6fa77
No related branches found
No related tags found
No related merge requests found
......@@ -108,8 +108,10 @@ void vtkMetaImageWriter::Write( )
}
}
double * origin = this->GetInput()->GetOrigin();
double * spacingDouble = this->GetInput()->GetSpacing();
double origin[3];
double spacingDouble[3];
this->GetInput()->GetOrigin(origin);
this->GetInput()->GetSpacing(spacingDouble);
float spacing[3];
spacing[0] = spacingDouble[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment