The first commit.

Enthaltene Umrechnungen:
- Leuchtkraft zu absoluter Helligkeit
- absolute Helligkeit zu Leuchtkraft
This commit is contained in:
2022-02-05 21:54:26 +01:00
parent 650305be96
commit ac804b116e
19 changed files with 1268 additions and 0 deletions

22
astroCalc.lpr Normal file
View File

@@ -0,0 +1,22 @@
program astroCalc;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.