18 lines
395 B
C#
18 lines
395 B
C#
using OpenTK.Mathematics;
|
|
|
|
namespace Engine.Graphics.Camera;
|
|
|
|
/// <summary>
|
|
/// Represents a camera that uses a screenspace projection.
|
|
/// </summary>
|
|
public class ScreenspaceCamera : ICamera
|
|
{
|
|
/// <inheritdoc/>
|
|
public Matrix4 View => Matrix4.Identity;
|
|
|
|
/// <inheritdoc/>
|
|
public Matrix4 Projection => Matrix4.Identity;
|
|
|
|
/// <inheritdoc/>
|
|
public Vector2i ScreenSize { get; set; }
|
|
} |