コード例 #1
0
ファイル: Volume.cs プロジェクト: ronmark1/ClearCanvas-1
 /// <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));
 }
コード例 #2
0
ファイル: IVolumeHeader.cs プロジェクト: bangush/server-1
 public Vector3D RotateToPatientOrientation(Vector3D volumeVector)
 {
     return(VolumeHeaderData.RotateToPatientOrientation(volumeVector));
 }