File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/Hypercube.Mathematics/Matrices Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 11using System . Collections ;
2+ using System . Diagnostics ;
23using System . Diagnostics . CodeAnalysis ;
34using System . Runtime . CompilerServices ;
45using System . Runtime . InteropServices ;
910namespace Hypercube . Mathematics . Matrices ;
1011
1112[ PublicAPI , Serializable , StructLayout ( LayoutKind . Sequential ) ]
13+ [ DebuggerDisplay ( "{ToString()}" ) ]
1214[ SuppressMessage ( "ReSharper" , "InconsistentNaming" ) ]
1315public partial struct Matrix3x3 : IEquatable < Matrix3x3 > , IEnumerable < Vector3 > , IEnumerable < float >
1416{
Original file line number Diff line number Diff line change 11using System . Collections ;
2+ using System . Diagnostics ;
23using System . Diagnostics . CodeAnalysis ;
34using System . Runtime . CompilerServices ;
45using System . Runtime . InteropServices ;
@@ -14,6 +15,7 @@ namespace Hypercube.Mathematics.Matrices;
1415/// Implementation of a 4x4 matrix for rendering work. (COLUM-MAJOR)
1516/// </summary>
1617[ PublicAPI , Serializable , StructLayout ( LayoutKind . Sequential ) ]
18+ [ DebuggerDisplay ( "{ToString()}" ) ]
1719[ SuppressMessage ( "ReSharper" , "InconsistentNaming" ) ]
1820public readonly partial struct Matrix4x4 : IEquatable < Matrix4x4 > , IEnumerable < Vector4 > , IEnumerable < float >
1921{
You can’t perform that action at this time.
0 commit comments