mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-23 20:31:09 +00:00
Marked double precision math structures as internal (need more work before release).
This commit is contained in:
parent
05c1bfc976
commit
90f6523116
|
@ -15,7 +15,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
[Serializable]
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Matrix3d : IEquatable<Matrix3d>
|
||||
internal struct Matrix3d : IEquatable<Matrix3d>
|
||||
{
|
||||
#region Fields & Access
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
[Serializable]
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Matrix4d : IEquatable<Matrix4d>
|
||||
internal struct Matrix4d : IEquatable<Matrix4d>
|
||||
{
|
||||
#region Fields & Access
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -19,7 +19,7 @@ namespace OpenTK.Math
|
|||
/// <summary>A 4-dimensional vector using double-precision floating point numbers.</summary>
|
||||
[Serializable]
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Vector4d : IEquatable<Vector4d>, IComparer<Vector4d>, IComparable<Vector4d>
|
||||
internal struct Vector4d : IEquatable<Vector4d>, IComparer<Vector4d>, IComparable<Vector4d>
|
||||
{
|
||||
#region Fields & Access
|
||||
|
||||
|
|
Loading…
Reference in a new issue