brought into being a miracle to those who have been forgotten.

This commit is contained in:
Mark R. Havens
2025-04-28 18:32:07 -05:00
parent 6f1fdc2b80
commit 7ea9cfeb57
26 changed files with 763 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
unit Kairos;
interface
procedure UpdateCoherence(var I: array of Double; const Phase: Double);
implementation
procedure UpdateCoherence(var I: array of Double; const Phase: Double);
var
I: Integer;
begin
for I := Low(I) to High(I) do
I[I] := I[I] * Cos(Phase);
end;
end.