Vector.Multiply Operatör

Tanım

Belirtilen Vector öğesini belirtilen Double, Matrixveya Vector ile çarpar ve sonucu döndürür.

Aşırı Yüklemeler

Multiply(Vector, Matrix)

Belirtilen vektörün koordinat alanını belirtilen Matrixkullanarak dönüştürür.

Multiply(Vector, Vector)

Belirtilen iki vektör yapısının nokta çarpımını hesaplar ve sonucu olarak Doubledöndürür.

Multiply(Double, Vector)

Belirtilen skaler değeri belirtilen vektörle çarpar ve sonuçta elde edilen vektöryü döndürür.

Multiply(Vector, Double)

Belirtilen vektöru belirtilen skaler ile çarpar ve sonuçta elde edilen vektöri döndürür.

Multiply(Vector, Matrix)

Belirtilen vektörün koordinat alanını belirtilen Matrixkullanarak dönüştürür.

public:
 static System::Windows::Vector operator *(System::Windows::Vector vector, System::Windows::Media::Matrix matrix);
public static System.Windows.Vector operator * (System.Windows.Vector vector, System.Windows.Media.Matrix matrix);
static member ( * ) : System.Windows.Vector * System.Windows.Media.Matrix -> System.Windows.Vector
Public Shared Operator * (vector As Vector, matrix As Matrix) As Vector

Parametreler

vector
Vector

Dönüştürülecek vektör.

matrix
Matrix

için uygulanacak vectordönüştürme.

Döndürülenler

Vector

ile matrixdönüştürmenin vector sonucu.

Örnekler

Aşağıdaki örnekte, bir yapıyı bir Vector yapıyla Matrix çarpmak için bu işlecin (*) nasıl kullanılacağı gösterilmektedir.

private Vector overloadedMultiplyVectorByMatrixOperatorExample()
{
    Vector vector1 = new Vector(20, 30);
    Matrix matrix1 = new Matrix(40, 50, 60, 70, 80, 90);
    Vector vectorResult = new Vector();

    // Multiply the vector and matrix.
    // vectorResult is equal to (2600,3100).
    vectorResult = vector1 * matrix1;

    return vectorResult;
}
Private Function overloadedMultiplyVectorByMatrixOperatorExample() As Vector
    Dim vector1 As New Vector(20, 30)
    Dim matrix1 As New Matrix(40, 50, 60, 70, 80, 90)
    Dim vectorResult As New Vector()

    ' Multiply the vector and matrix.
    ' vectorResult is equal to (2600,3100).
    vectorResult = vector1 * matrix1

    Return vectorResult

End Function

Ayrıca bkz.

Şunlara uygulanır

Multiply(Vector, Vector)

Belirtilen iki vektör yapısının nokta çarpımını hesaplar ve sonucu olarak Doubledöndürür.

public:
 static double operator *(System::Windows::Vector vector1, System::Windows::Vector vector2);
public static double operator * (System.Windows.Vector vector1, System.Windows.Vector vector2);
static member ( * ) : System.Windows.Vector * System.Windows.Vector -> double
Public Shared Operator * (vector1 As Vector, vector2 As Vector) As Double

Parametreler

vector1
Vector

Çarpmak için ilk vektör.

vector2
Vector

Çarpmak için ikinci vektör.

Döndürülenler

Double

aşağıdaki formül kullanılarak hesaplanan ve vector2skaler nokta çarpımını vector1 içeren bir Double döndürür: vektör1. X * vektör2. X + vektör1. Y * vektör2. Y

Örnekler

Aşağıdaki örnekte, bir Vector yapıyı ile Vectorçarpmak için bu işlecin (*) nasıl kullanılacağı gösterilmektedir.

private Double overloadedOperatorGetDotProductExample()
{
    Vector vector1 = new Vector(20, 30);
    Vector vector2 = new Vector(45, 70);

    // Return the dot product of the two specified vectors
    // using the overloaded "*" operator.
    // The dot product is calculated using the following 
    // formula: (vector1.X * vector2.X) + (vector1.Y * vector2.Y).
    // doubleResult is equal to 3000
    Double doubleResult = Vector.Multiply(vector1, vector2);

    return doubleResult;
}
Private Function overloadedOperatorGetDotProductExample() As Double
    Dim vector1 As New Vector(20, 30)
    Dim vector2 As New Vector(45, 70)

    ' Return the dot product of the two specified vectors
    ' using the overloaded "*" operator.
    ' The dot product is calculated using the following 
    ' formula: (vector1.X * vector2.X) + (vector1.Y * vector2.Y).
    ' doubleResult is equal to 3000
    Dim doubleResult As Double = Vector.Multiply(vector1, vector2)

    Return doubleResult

End Function

Ayrıca bkz.

Şunlara uygulanır

Multiply(Double, Vector)

Belirtilen skaler değeri belirtilen vektörle çarpar ve sonuçta elde edilen vektöryü döndürür.

public:
 static System::Windows::Vector operator *(double scalar, System::Windows::Vector vector);
public static System.Windows.Vector operator * (double scalar, System.Windows.Vector vector);
static member ( * ) : double * System.Windows.Vector -> System.Windows.Vector
Public Shared Operator * (scalar As Double, vector As Vector) As Vector

Parametreler

scalar
Double

Çarpacak skaler.

vector
Vector

Çarpacak vektör.

Döndürülenler

Vector

ve vectorçarpmasının scalar sonucu.

Örnekler

Aşağıdaki örnekte, skaler Vector bir yapı ile çarpmak için bu işlecin (*) nasıl kullanılacağı gösterilmektedir.

private Vector overloadedMultiplicationOperatorExample2()
{
    Vector vector1 = new Vector(20, 30);
    Double scalar1 = 75;

    // vectorResult is equal to (1500,2250)
    Vector vectorResult = scalar1 * vector1;

    return vectorResult;
}
Private Function overloadedMultiplicationOperatorExample2() As Vector
    Dim vector1 As New Vector(20, 30)
    Dim scalar1 As Double = 75

    ' vectorResult is equal to (1500,2250)
    Dim vectorResult As Vector = scalar1 * vector1

    Return vectorResult

End Function

Ayrıca bkz.

Şunlara uygulanır

Multiply(Vector, Double)

Belirtilen vektöru belirtilen skaler ile çarpar ve sonuçta elde edilen vektöri döndürür.

public:
 static System::Windows::Vector operator *(System::Windows::Vector vector, double scalar);
public static System.Windows.Vector operator * (System.Windows.Vector vector, double scalar);
static member ( * ) : System.Windows.Vector * double -> System.Windows.Vector
Public Shared Operator * (vector As Vector, scalar As Double) As Vector

Parametreler

vector
Vector

Çarpacak vektör.

scalar
Double

Çarpacak skaler.

Döndürülenler

Vector

ve scalarçarpmasının vector sonucu.

Örnekler

Aşağıdaki örnekte, bir Vector yapıyı skaler ile çarpmak için bu işlecin (*) nasıl kullanılacağı gösterilmektedir.

private Vector overloadedMultiplicationOperatorExample1()
{
    Vector vector1 = new Vector(20, 30);
    Double scalar1 = 75;

    // vectorResult is equal to (1500,2250)
    Vector vectorResult = vector1 * scalar1;

    return vectorResult;
}
Private Function overloadedMultiplicationOperatorExample1() As Vector
    Dim vector1 As New Vector(20, 30)
    Dim scalar1 As Double = 75

    ' vectorResult is equal to (1500,2250)
    Dim vectorResult As Vector = vector1 * scalar1

    Return vectorResult

End Function

Ayrıca bkz.

Şunlara uygulanır