#pragma once
#include <windows.h>
typedef struct _WORD_LOCATION_
{
float x;
float y;
float z;
}WORD_LOCATION;
typedef struct _CUT_COOR_
{
float x;
float y;
float z;
float w;
}CUT_COOR;
typedef struct _NDC_COOR_
{
float x;
float y;
float z;
}NDC_COOR;
typedef struct _SCREEN_COOR_
{
float x;
float y;
}SCREEN_COOR;
typedef struct _SCREEN_PARAM_
{
float height;
float width;
}SCREEN_PARAM;
class World2Screen
{
public:
float PersonMatrix[4][4];
WORD_LOCATION WordLocation;
CUT_COOR CutCoor;
NDC_COOR NDCCoor;
SCREEN_COOR ScreenCoor;
SCREEN_PARAM ScreenParam;
public:
World2Screen(WORD_LOCATION Word, float* PersonMatrix);
void Word2CutCoor();
bool InVisualField();
void Cut2NDCCoor();
void NDC2ScreenCoor();
};
#include "World2Screen.h"
World2Screen::World2Screen(WORD_LOCATION Word, float* PersonMatrix)
{
this->WordLocation.x = Word.x;
this->WordLocation.y = Word.y;
this->WordLocation.z = Word.z;
memcpy_s(this->PersonMatrix,sizeof(this->PersonMatrix),PersonMatrix,sizeof(this->PersonMatrix));
}
void World2Screen::Word2CutCoor()
{
this->CutCoor.x = this->PersonMatrix[0][0] * this->WordLocation.x + this->PersonMatrix[0][1] * this->WordLocation.y + this->PersonMatrix[0][2] * this->WordLocation.z + this->PersonMatrix[0][3];
this->CutCoor.y = this->PersonMatrix[1][0] * this->WordLocation.x + this->PersonMatrix[1][1] * this->WordLocation.y + this->PersonMatrix[1][2] * this->WordLocation.z + this->PersonMatrix[1][3];
this->CutCoor.z = this->PersonMatrix[2][0] * this->WordLocation.x + this->PersonMatrix[2][1] * this->WordLocation.y + this->PersonMatrix[2][2] * this->WordLocation.z + this->PersonMatrix[2][3];
this->CutCoor.w = this->PersonMatrix[3][0] * this->WordLocation.x + this->PersonMatrix[3][1] * this->WordLocation.y + this->PersonMatrix[3][2] * this->WordLocation.z + this->PersonMatrix[3][3];
}
bool World2Screen::InVisualField()
{
if (this->CutCoor.w < 0.01) { return false; };
}
void World2Screen::Cut2NDCCoor()
{
this->NDCCoor.x = this->CutCoor.x / this->CutCoor.w;
this->NDCCoor.y = this->CutCoor.y / this->CutCoor.w;
this->NDCCoor.z = this->CutCoor.z / this->CutCoor.w;
}
void World2Screen::NDC2ScreenCoor()
{
this->ScreenCoor.x = this->ScreenParam.width / 2 + (this->ScreenParam.width / 2) * this->NDCCoor.x;
this->ScreenCoor.y = this->ScreenParam.height / 2 - (this->ScreenParam.height / 2) * this->NDCCoor.y;
}
|