Rotate Method (DicomImage3D)
In This Topic
Rotate view around a defined axis and based on a
DicomViewer if available
Syntax
'Declaration
Public Sub Rotate( _
ByVal As System.Single, _
ByVal As System.Windows.Media.Media3D.Vector3D, _
Optional ByVal As DicomViewer _
)
'Usage
Dim instance As DicomImage3D
Dim Angle As System.Single
Dim Axis As System.Windows.Media.Media3D.Vector3D
Dim Viewer As DicomViewer
instance.Rotate(Angle, Axis, Viewer)
public void Rotate(
System.float ,
System.Windows.Media.Media3D.Vector3D ,
DicomViewer
)
public procedure Rotate(
: System.Single;
: System.Windows.Media.Media3D.Vector3D;
: DicomViewer
);
public function Rotate(
: System.float,
: System.Windows.Media.Media3D.Vector3D,
: DicomViewer
);
public: void Rotate(
System.float ,
System.Windows.Media.Media3D.Vector3D ,
DicomViewer*
)
public:
void Rotate(
System.float ,
System.Windows.Media.Media3D.Vector3D ,
DicomViewer^
)
Parameters
- Angle
- The angle to rotate, measured clockwise in degrees
- Axis
- The axis around which to rotate the view
- Viewer
- Display parameters of this viewer instance to use for applying rotation
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also