mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 17:45:33 +00:00
8dcb8601a2
Hopefully this is the first and last time we have to do this.
37 lines
706 B
C#
37 lines
706 B
C#
using System;
|
|
|
|
using OpenTK;
|
|
|
|
namespace Examples.Shapes
|
|
{
|
|
public struct VertexT2dN3dV3d
|
|
{
|
|
public Vector2d TexCoord;
|
|
public Vector3d Normal;
|
|
public Vector3d Position;
|
|
|
|
public VertexT2dN3dV3d( Vector2d texcoord, Vector3d normal, Vector3d position )
|
|
{
|
|
TexCoord = texcoord;
|
|
Normal = normal;
|
|
Position = position;
|
|
}
|
|
}
|
|
|
|
public struct VertexT2fN3fV3f
|
|
{
|
|
public Vector2 TexCoord;
|
|
public Vector3 Normal;
|
|
public Vector3 Position;
|
|
}
|
|
|
|
public struct VertexT2hN3hV3h
|
|
{
|
|
public Vector2h TexCoord;
|
|
public Vector3h Normal;
|
|
public Vector3h Position;
|
|
}
|
|
|
|
|
|
}
|