Point4D.Subtract(Point4D, Point4D) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
static System::Windows::Media::Media3D::Point4D Subtract(System::Windows::Media::Media3D::Point4D point1, System::Windows::Media::Media3D::Point4D point2);
public static System.Windows.Media.Media3D.Point4D Subtract (System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2);
static member Subtract : System.Windows.Media.Media3D.Point4D * System.Windows.Media.Media3D.Point4D -> System.Windows.Media.Media3D.Point4D
Public Shared Function Subtract (point1 As Point4D, point2 As Point4D) As Point4D
Parameters
Returns
Returns the difference between point1
and point2
.
Examples
The following example shows how to subtract a Point4D structure from a Point4D structure.
// Subtracts a Point3D from a Point4D using the static Subtract method.
// Returns a Point4D.
Point4D point1 = new Point4D(10, 5, 1, 4);
Point4D point2 = new Point4D(15, 40, 60, 75);
Point4D pointResult = new Point4D();
pointResult = Point4D.Subtract(point1, point2);
// pointResult is equal to (-5, -35, -59, -71)
// Displaying Results
syntaxString = "pointResult = Point4D.Subtract(point1, point2);";
resultType = "Point4D";
operationString = "Subtracting a Vector3D from a Point4D";
ShowResults(pointResult.ToString(), syntaxString, resultType, operationString);
' Subtracts a Point3D from a Point4D using the static Subtract method.
' Returns a Point4D.
Dim point1 As New Point4D(10, 5, 1, 4)
Dim point2 As New Point4D(15, 40, 60, 75)
Dim pointResult As New Point4D()
pointResult = Point4D.Subtract(point1, point2)
' pointResult is equal to (-5, -35, -59, -71)
' Displaying Results
syntaxString = "pointResult = Point4D.Subtract(point1, point2)"
resultType = "Point4D"
operationString = "Subtracting a Vector3D from a Point4D"
ShowResults(pointResult.ToString(), syntaxString, resultType, operationString)
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET