XMMATRIX::XMMATRIX(constfloat*) 함수(directxmath.h)
16개의 요소 float
배열에서 XMMATRIX 구조체의 새 instance 초기화합니다.
16개의 요소 float
배열에서 XMMATRIX 구조체의 새 instance 초기화합니다.
참고 이 생성자는 C++를 사용하여 개발하는 경우에만 사용할 수 있습니다.
구문
void XMMATRIX(
const float *pArray
) noexcept;
매개 변수
pArray
16개 요소 <wdcml:mark type="appdef" xmlns:wdcml="http://microsoft.com/wdcml"의 주소입니다>.float</wdcml:mark> 배열- XMMATRIX의 새 instance 각 멤버의 값을 지정합니다.
반환 값
없음
설명
행렬 요소는 행 주 순서로 pArray에 저장됩니다.
다음 의사 코드는 이 생성자의 작업을 보여 줍니다.
XMMATRIX mat;
mat._11=pArray[0];
mat._12=pArray[1];
mat._13=pArray[2];
mat._14=pArray[3];
mat._21=pArray[4];
mat._22=pArray[5];
mat._23=pArray[6];
mat._24=pArray[7];
mat._31=pArray[8];
mat._32=pArray[9];
mat._33=pArray[10];
mat._34=pArray[11];
mat._41=pArray[12];
mat._42=pArray[13];
mat._43=pArray[14];
mat._44=pArray[15];
요구 사항
대상 플랫폼 | Windows |
헤더 | directxmath.h |