Skip to content

Commit 3e6ccc7

Browse files
committed
restore indent
1 parent 63c198b commit 3e6ccc7

File tree

1 file changed

+12
-12
lines changed
  • src/OpenCvSharp/Modules/core/Mat

1 file changed

+12
-12
lines changed

src/OpenCvSharp/Modules/core/Mat/Mat.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2214,7 +2214,7 @@ public void PopBack(int nElems = 1)
22142214
GC.KeepAlive(this);
22152215
}
22162216

2217-
#region PushBack
2217+
#region PushBack
22182218

22192219
/// <summary>
22202220
/// Adds elements to the bottom of the matrix. (Mat::push_back)
@@ -3740,7 +3740,7 @@ public long Step(int i)
37403740
return ret.ToInt64();
37413741
}
37423742

3743-
#region ToString
3743+
#region ToString
37443744

37453745
/// <summary>
37463746
/// Returns a string that represents this Mat.
@@ -3756,9 +3756,9 @@ public override string ToString()
37563756
" ]";
37573757
}
37583758

3759-
#endregion
3759+
#endregion
37603760

3761-
#region Dump
3761+
#region Dump
37623762

37633763
/// <summary>
37643764
/// Returns a string that represents each element value of Mat.
@@ -3774,7 +3774,7 @@ public override string ToString()
37743774

37753775
#endregion
37763776

3777-
#region EmptyClone
3777+
#region EmptyClone
37783778

37793779
#if LANG_JP
37803780
/// <summary>
@@ -3795,7 +3795,7 @@ public Mat EmptyClone()
37953795

37963796
#endregion
37973797

3798-
#region Element Indexer
3798+
#region Element Indexer
37993799

38003800
/// <summary>
38013801
/// Gets a type-specific indexer. The indexer has getters/setters to access each matrix element.
@@ -4031,7 +4031,7 @@ public override unsafe T this[params int[] idx]
40314031

40324032
#endregion
40334033

4034-
#region Get/Set
4034+
#region Get/Set
40354035

40364036
/// <summary>
40374037
/// Returns a value to the specified array element.
@@ -4188,7 +4188,7 @@ public void Set<T>(int[] idx, T value) where T : struct
41884188

41894189
#endregion
41904190

4191-
#region Get/SetArray
4191+
#region Get/SetArray
41924192

41934193
private static readonly Dictionary<Type, int> dataDimensionMap = new Dictionary<Type, int>
41944194
{
@@ -4432,9 +4432,9 @@ public bool SetRectangularArray<T>(T[,] data)
44324432
}
44334433
}
44344434

4435-
#endregion
4436-
4437-
#region To*
4435+
#endregion
4436+
4437+
#region To*
44384438

44394439
/// <summary>
44404440
/// Encodes an image into a memory buffer.
@@ -4517,7 +4517,7 @@ public TMat Cast<TMat>()
45174517
throw new NotSupportedException($"Failed to convert Mat to {typeof(TMat).Name}");
45184518
}
45194519

4520-
#region ForEach
4520+
#region ForEach
45214521

45224522
// ReSharper disable InconsistentNaming
45234523

0 commit comments

Comments
 (0)