Exemple #1
0
 /// <summary>
 /// Rotates the specified patient orientation matrix into the volume coordinate system.
 /// </summary>
 /// <param name="patientOrientation">The patient orientation to be converted, specified as a <see cref="Matrix3D"/>.</param>
 /// <exception cref="ArgumentNullException">Thrown if <paramref name="patientOrientation"/> is NULL.</exception>
 /// <returns>The specified patient orientation converted to the volume coordinate system.</returns>
 public Matrix3D RotateToVolumeOrientation(Matrix3D patientOrientation)
 {
     return(_volumeHeaderData.RotateToVolumeOrientation(patientOrientation));
 }
Exemple #2
0
 public Vector3D RotateToVolumeOrientation(Vector3D patientVector)
 {
     return(VolumeHeaderData.RotateToVolumeOrientation(patientVector));
 }