Marked double precision math structures as internal (need more work before release).

This commit is contained in:
the_fiddler 2008-04-06 15:36:42 +00:00
parent 05c1bfc976
commit 90f6523116
6 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ namespace OpenTK.Math
{
[Serializable]
[StructLayout(LayoutKind.Sequential)]
public struct Matrix3d : IEquatable<Matrix3d>
internal struct Matrix3d : IEquatable<Matrix3d>
{
#region Fields & Access

View file

@ -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.

View file

@ -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