Trying to make it easier for newcomers to find the code.

I'm concerned that a first-time visitor to the Astronomy Engine
repo on GitHub will get lost. I made it more obvious where to
quickly find the source code needed for a given language.
This commit is contained in:
Don Cross
2021-11-23 20:43:17 -05:00
parent cec908e52c
commit d02039c78f
9 changed files with 37 additions and 5 deletions

View File

@@ -36,11 +36,11 @@
<td style="text-align: center;"><a href="demo/python/">Examples</a></td>
</tr>
<tr>
<td style="text-align: center;"><a href="source/c/">Documentation</a></td>
<td style="text-align: center;"><a href="source/csharp/">Documentation</a></td>
<td style="text-align: center;"><a href="source/js/">Documentation</a></td>
<td style="text-align: center;"><a href="source/js/">Documentation</a></td>
<td style="text-align: center;"><a href="source/python/">Documentation</a></td>
<td style="text-align: center;"><a href="source/c/">Code &amp; Docs</a></td>
<td style="text-align: center;"><a href="source/csharp/">Code &amp; Docs</a></td>
<td style="text-align: center;"><a href="source/js/">Code &amp; Docs</a></td>
<td style="text-align: center;"><a href="source/js/">Code &amp; Docs</a></td>
<td style="text-align: center;"><a href="source/python/">Code &amp; Docs</a></td>
</tr>
</table>

View File

@@ -7,6 +7,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own C# program, all you need is the
file `astronomy.cs` from this directory.
To get started quickly, here are some [examples](../../demo/csharp/).
---

View File

@@ -8,6 +8,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own C or C++ program, all you need are the
files `astronomy.h` and `astronomy.c` from this directory.
To get started quickly, here are some [examples](../../demo/c/).
---

View File

@@ -13,6 +13,13 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To use Astronomy Engine in your own project, you can use the TypeScript file `astronomy.ts`
from this directory.
For convenience, this directory also contains human-readable JavaScript files `astronomy.js`
and minified versions for the browser (`astronomy.browser.min.js`) and Node.js (`astronomy.min.js`).
These JavaScript sources are all compiled from the TypeScript source `astronomy.ts`.
To get started quickly, here are some [browser scripting examples](../../demo/browser/)
and some [Node.js examples](../../demo/nodejs/).

View File

@@ -7,6 +7,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own Python program, all you need is
the file `astronomy.py` from this directory.
To get started quickly, here are some [examples](../../demo/python/).
---

View File

@@ -8,6 +8,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own C or C++ program, all you need are the
files `astronomy.h` and `astronomy.c` from this directory.
To get started quickly, here are some [examples](../../demo/c/).
---

View File

@@ -7,6 +7,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own C# program, all you need is the
file `astronomy.cs` from this directory.
To get started quickly, here are some [examples](../../demo/csharp/).
---

View File

@@ -13,6 +13,13 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To use Astronomy Engine in your own project, you can use the TypeScript file `astronomy.ts`
from this directory.
For convenience, this directory also contains human-readable JavaScript files `astronomy.js`
and minified versions for the browser (`astronomy.browser.min.js`) and Node.js (`astronomy.min.js`).
These JavaScript sources are all compiled from the TypeScript source `astronomy.ts`.
To get started quickly, here are some [browser scripting examples](../../demo/browser/)
and some [Node.js examples](../../demo/nodejs/).

View File

@@ -7,6 +7,9 @@ See the [home page](https://github.com/cosinekitty/astronomy) for more info.
---
## Quick Start
To include Astronomy Engine in your own Python program, all you need is
the file `astronomy.py` from this directory.
To get started quickly, here are some [examples](../../demo/python/).
---