18 lines
380 B
C
18 lines
380 B
C
/**
|
|
* Copyright (c) 2021 Dominic Msters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../libs.h"
|
|
|
|
/** The math for the camera is stored here. */
|
|
typedef struct {
|
|
/** View Matrix (Where the camera looks) */
|
|
mat4 view;
|
|
|
|
/** Projection Matrix (How the camera looks) */
|
|
mat4 projection;
|
|
} camera_t; |