Skip to content

Commit

Permalink
Update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSazonov committed Aug 30, 2024
1 parent e6b0fd2 commit 717e15f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## Types of examples

Different types of examples are provided. All examples have a frontend implemented in QML but differ in how the backend logic is implemented and the applied runtime. These examples can be categorised as shown in the following table:
Different types of examples are provided. All examples have a graphical frontend implemented in QML, but differ in the way the backend logic is implemented and the runtime used to run them. These examples can be categorised as shown in the following table:

| Example | Type | Frontend | Backend | Runtime |
| Example | Type | Frontend | Backend | Runtime |
| -------------- | ---- | -------- | -------- | -------------------- |
| BasicQml | I | QML | Mock QML | `qml` tool |
| BasicPy | II | QML | Mock QML | `python` interpreter |
| BasicC++ | IV | QML | Mock QML | need to be compiled |
| IntermediatePy | III | QML | Python | `python` interpreter |
| AdvancedPy | III | QML | Python | `python` interpreter |
| BasicC++ | IV | QML | Mock QML | need to be compiled |


## Setting up Python and IDE
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ EasyApp is currently being used as the basis for the graphical interface in the
* [EasyReflectometry](http://github.com/EasyScience/EasyReflectometry)
* [EasyTexture](http://github.com/EasyScience/EasyTextureApp)

More simple examples of using EasyApp are described in [EXAMPLES.md](EXAMPLES.md).
More simple examples of how to use EasyApp are described in [EXAMPLES.md](EXAMPLES.md) and presented in the [examples](examples) directory:

If you want to see what EasyApp looks like, you can try the web demo at https://easyscience.github.io/EasyApp/BasicC++.html.
* [BasicQml](examples/BasicQml)
* [BasicPy](examples/BasicPy)
* [BasicC++](examples/BasicC++)
* [IntermediatePy](examples/IntermediatePy)
* [AdvancedPy](examples/AdvancedPy)

If you want to see what EasyApp looks like, you can try the web demo based on the [BasicC++](examples/BasicC++) example at https://easyscience.github.io/EasyApp/BasicC++.html.

0 comments on commit 717e15f

Please sign in to comment.