Point.Multiply(Point, Matrix) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
public:
static System::Windows::Point Multiply(System::Windows::Point point, System::Windows::Media::Matrix matrix);
public static System.Windows.Point Multiply (System.Windows.Point point, System.Windows.Media.Matrix matrix);
static member Multiply : System.Windows.Point * System.Windows.Media.Matrix -> System.Windows.Point
Public Shared Function Multiply (point As Point, matrix As Matrix) As Point
매개 변수
- point
- Point
변형할 점입니다.
- matrix
- Matrix
변환 행렬입니다.
반환
변환된 점입니다.
예제
다음 예제에서는를 곱하는 방법을 Point 구조체를 통해를 Matrix 를 사용 하 여 구조체를 Multiply 메서드.
private Point multiplyPointByMatrixExample()
{
Point point1 = new Point(10, 5);
Matrix matrix1 = new Matrix(40, 50, 60, 70, 80, 90);
// Multiplies a Point by a Matrix.
// pointResult is equal to (780,940).
Point pointResult = Point.Multiply(point1, matrix1);
return pointResult;
}
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET