mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
d83c4e2b26
port_draw in multiple T classes. pb v1. proj v1, ready. WinMain v3.
33 lines
629 B
C++
33 lines
629 B
C++
#pragma once
|
|
#include "maths.h"
|
|
|
|
struct vector_type4
|
|
{
|
|
float X;
|
|
float Y;
|
|
float Z;
|
|
float W;
|
|
};
|
|
|
|
struct mat4_row_major
|
|
{
|
|
vector_type4 Row0;
|
|
vector_type4 Row1;
|
|
vector_type4 Row2;
|
|
vector_type4 Row3;
|
|
};
|
|
|
|
|
|
class proj
|
|
{
|
|
public:
|
|
static void init(float* mat4x3, float d, float centerX, float centerY);
|
|
static void matrix_vector_multiply(mat4_row_major* mat, vector_type* vec, vector_type* dstVec);
|
|
static float z_distance(vector_type* vec);
|
|
static void xform_to_2d(vector_type* vec, int* dst);
|
|
static void recenter(float centerX, float centerY);
|
|
private:
|
|
static mat4_row_major matrix;
|
|
static float d_, centerx, centery;
|
|
};
|