2023-10-09 17:22:29 +08:00
|
|
|
#include <iostream>
|
2023-10-12 15:07:58 +08:00
|
|
|
#include "texture.h"
|
2023-10-11 09:37:14 +08:00
|
|
|
#include "triangle.h"
|
2023-10-16 00:38:17 +08:00
|
|
|
#include "matrix.h"
|
2023-10-09 17:22:29 +08:00
|
|
|
|
|
|
|
int main(int argc, char **const argv) {
|
2023-10-12 15:07:58 +08:00
|
|
|
// TRIANGLE::Practice1();
|
2023-10-16 00:38:17 +08:00
|
|
|
// auto res = TEXTURE::Texture();
|
|
|
|
MATRIX::Matrix();
|
|
|
|
return 0 ;
|
2023-10-08 15:34:44 +08:00
|
|
|
}
|