Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Function TrueCopy(BoolMatrix: TBoolMatrix): TBoolMatrix;
- Var
- I, J: Integer;
- Begin
- SetLength(Result, Length(BoolMatrix), Length(BoolMatrix[0]));
- For I := Low(BoolMatrix) to High(BoolMatrix) do
- For J := Low(BoolMatrix[I]) to High(BoolMatrix[I]) do
- Begin
- Result[I][J] := BoolMatrix[I][J];
- End;
- End;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement