Point3D.Subtract Methode

Definitie

Trekt een Point3D structuur of structuur Vector3D af van een Point3D structuur.

Overloads

Name Description
Subtract(Point3D, Point3D)

Trekt een Point3D structuur af van een Point3D structuur en retourneert het resultaat als een Vector3D structuur.

Subtract(Point3D, Vector3D)

Trekt een Vector3D structuur af van een Point3D structuur en retourneert het resultaat als een Point3D structuur.

Subtract(Point3D, Point3D)

Trekt een Point3D structuur af van een Point3D structuur en retourneert het resultaat als een Vector3D structuur.

public:
 static System::Windows::Media::Media3D::Vector3D Subtract(System::Windows::Media::Media3D::Point3D point1, System::Windows::Media::Media3D::Point3D point2);
public static System.Windows.Media.Media3D.Vector3D Subtract(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2);
static member Subtract : System.Windows.Media.Media3D.Point3D * System.Windows.Media.Media3D.Point3D -> System.Windows.Media.Media3D.Vector3D
Public Shared Function Subtract (point1 As Point3D, point2 As Point3D) As Vector3D

Parameters

point1
Point3D

De Point3D structuur waaruit moet worden afgetrokken.

point2
Point3D

De Point3D structuur die moet worden afgetrokken van point1.

Retouren

Een Vector3D structuur die het verschil tussen point1 en point2.

Voorbeelden

In het volgende voorbeeld ziet u hoe u een Point3D structuur van een Point3D structuur kunt aftrekken.

// Subtracts a Point3D from a Point3D using the static Subtract method.  
// Returns a Vector3D.

Point3D point1 = new Point3D(10, 5, 1);
Point3D point2 = new Point3D(15, 40, 60);
Vector3D vectorResult = new Vector3D();

vectorResult = Point3D.Subtract(point1, point2);
// vectorResult is equal to (-5, -35, -59)

// Displaying Results
syntaxString = "vectorResult = Point3D.Subtract(point1, point2);";
resultType = "Vector3D";
operationString = "Subtracting a Point3D from a Point3D";
ShowResults(vectorResult.ToString(), syntaxString, resultType, operationString);
' Subtracts a Point3D from a Point3D using the static Subtract method.  
' Returns a Vector3D.

Dim point1 As New Point3D(10, 5, 1)
Dim point2 As New Point3D(15, 40, 60)
Dim vectorResult As New Vector3D()

vectorResult = Point3D.Subtract(point1, point2)
' vectorResult is equal to (-5, -35, -59)

' Displaying Results
syntaxString = "vectorResult = Point3D.Subtract(point1, point2)"
resultType = "Vector3D"
operationString = "Subtracting a Point3D from a Point3D"
ShowResults(vectorResult.ToString(), syntaxString, resultType, operationString)

Zie ook

Van toepassing op

Subtract(Point3D, Vector3D)

Trekt een Vector3D structuur af van een Point3D structuur en retourneert het resultaat als een Point3D structuur.

public:
 static System::Windows::Media::Media3D::Point3D Subtract(System::Windows::Media::Media3D::Point3D point, System::Windows::Media::Media3D::Vector3D vector);
public static System.Windows.Media.Media3D.Point3D Subtract(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Vector3D vector);
static member Subtract : System.Windows.Media.Media3D.Point3D * System.Windows.Media.Media3D.Vector3D -> System.Windows.Media.Media3D.Point3D
Public Shared Function Subtract (point As Point3D, vector As Vector3D) As Point3D

Parameters

point
Point3D

De Point3D structuur waaruit moet worden afgetrokken vector.

vector
Vector3D

De Vector3D structuur die moet worden afgetrokken van point.

Retouren

Het verschil tussen point en vector.

Voorbeelden

In het volgende voorbeeld ziet u hoe u een Vector3D structuur van een Point3D structuur kunt aftrekken.

// Subtracts a Vector3D from a Point3D using the static Subtract method. 
// Returns a Point3D.

Point3D point1 = new Point3D(10, 5, 1);
Vector3D vector1 = new Vector3D(20, 30, 40);
Point3D pointResult = new Point3D();

pointResult = Point3D.Subtract(point1, vector1);
// pointResult is equal to (-10, -25, -39)

// Displaying Results
syntaxString = "pointResult = Point3D.Subtract(point1, vector1);";
resultType = "Point3D";
operationString = "Subtracting a Vector3D from a Point3D";
ShowResults(pointResult.ToString(), syntaxString, resultType, operationString);
' Subtracts a Vector3D from a Point3D using the static Subtract method. 
' Returns a Point3D.

Dim point1 As New Point3D(10, 5, 1)
Dim vector1 As New Vector3D(20, 30, 40)
Dim pointResult As New Point3D()

pointResult = Point3D.Subtract(point1, vector1)
' pointResult is equal to (-10, -25, -39)

' Displaying Results
syntaxString = "pointResult = Point3D.Subtract(point1, vector1)"
resultType = "Point3D"
operationString = "Subtracting a Vector3D from a Point3D"
ShowResults(pointResult.ToString(), syntaxString, resultType, operationString)

Zie ook

Van toepassing op