View Issue Details

IDProjectCategoryView StatusLast Update
0000104Slicer3MRMLpublic2007-11-08 11:48
Reporterlantiga Assigned Topieper  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Summary0000104: Missing method implementation on vtkMRMLVolumeNode
Description

I noticed that the implementation of the method

void vtkMRMLVolumeNode::GetIJKToRASDirections(double dirs[3][3]);

declared in vtkMRMLVolumeNode.h:97 is missing in vtkMRMLVolumeNode.cxx

It would be something like

void vtkMRMLVolumeNode::GetIJKToRASDirections(double dirs[3][3])
{
for (int i=0; i<3; i++)
{
for (int j=0; j<3; j++)
{
dirs[i][j] = IJKToRASDirections[i][j];
}
}
}

TagsNo tags attached.

Activities

lantiga

lantiga

2007-10-23 00:07

reporter   ~0000125

The fix has been committed Oct 22nd by Steve Piper. The bug can be closed. Thanks!

Issue History

Date Modified Username Field Change
2007-10-17 07:52 lantiga New Issue
2007-10-23 00:07 lantiga Note Added: 0000125
2007-11-08 11:48 pieper Assigned To => pieper
2007-11-08 11:48 pieper Status new => closed
2007-11-08 11:48 pieper Resolution open => fixed