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