diff --git a/src/Trame.md b/src/Trame.md index bb602b574cbff2ac04f6e2ed30fc1b95b820acf0..b5d4c36c403e2e9a4dd0f5edff1120a559490f31 100644 --- a/src/Trame.md +++ b/src/Trame.md @@ -12,9 +12,7 @@ Make sure that you also read the [guide](https://kitware.github.io/trame/guide/) The example applications here are available as tarballs that you download and open on your computer. Once this is done, you will be able to interact with, and also modify, the application. -## VTK Examples - -### Applications +## Applications | Example Name | Description | Image | | -------------- | ------------- | ------- | @@ -22,19 +20,8 @@ The example applications here are available as tarballs that you download and op [Multi Filter](/Trame/Applications/MultiFilter) | A multi filter example using VTK. [RemoteSelection](/Trame/Applications/RemoteSelection) | How to select a data file remotely. -### MiniApps +## MiniApps | Example Name | Description | Image | | -------------- | ------------- | ------- | [SimpleCone](/Trame/MiniApps/SimpleCone) | Demonstrate basic usage of trame with VTK. - -### Advanced - -## ParaView Examples - -### Applications - -### MiniApps - -### Advanced - diff --git a/src/Trame/Applications/FiniteElementAnalysis/app_client_view.py b/src/Trame/Applications/FiniteElementAnalysis/app_client_view.py index 9560834125d137cf2ea92998805b4b2d7f87d6af..967c619020da2e45454e58d9dc0c7a30622e385a 100644 --- a/src/Trame/Applications/FiniteElementAnalysis/app_client_view.py +++ b/src/Trame/Applications/FiniteElementAnalysis/app_client_view.py @@ -1,4 +1,4 @@ -r""" +""" Original code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/Applications/FiniteElementAnalysis/app_client_view.py Installation requirements: @@ -383,4 +383,4 @@ if args.data: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/Applications/FiniteElementAnalysis/app_local_view.py b/src/Trame/Applications/FiniteElementAnalysis/app_local_view.py index 054e29228ab4760baf6b53a33bc2d17461f18854..78e2209fa3df8b844296fe3ef606f24e755987ab 100644 --- a/src/Trame/Applications/FiniteElementAnalysis/app_local_view.py +++ b/src/Trame/Applications/FiniteElementAnalysis/app_local_view.py @@ -1,4 +1,4 @@ -r""" +""" Original code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/Applications/FiniteElementAnalysis/app_local_view.py Installation requirements: @@ -362,4 +362,4 @@ if args.data: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/Applications/FiniteElementAnalysis/app_remote_view.py b/src/Trame/Applications/FiniteElementAnalysis/app_remote_view.py index 3eb57cf4f767857f505aeca949d2574e1319b5f0..c628e968293be02dcea009d8af0b77dd6cc8c68e 100644 --- a/src/Trame/Applications/FiniteElementAnalysis/app_remote_view.py +++ b/src/Trame/Applications/FiniteElementAnalysis/app_remote_view.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/Applications/FiniteElementAnalysis/app_remote_view.py Installation requirements: @@ -373,4 +373,4 @@ if args.data: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/Applications/MultiFilter/app.py b/src/Trame/Applications/MultiFilter/app.py index 5af557e11f996d60bbb59733fa9388875104a9f7..002c25803a6018fd473831080f108db6f934e149 100644 --- a/src/Trame/Applications/MultiFilter/app.py +++ b/src/Trame/Applications/MultiFilter/app.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/Applications/MultiFilter/app.py Installation requirements: @@ -607,4 +607,4 @@ with SinglePageWithDrawerLayout(server) as layout: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/Applications/RemoteSelection/app.py b/src/Trame/Applications/RemoteSelection/app.py index 20301092b0e8d3047dd0b5da0ec927a8ee1dd153..8bff35a79be16493e92c3220f161bf98ffa825f3 100644 --- a/src/Trame/Applications/RemoteSelection/app.py +++ b/src/Trame/Applications/RemoteSelection/app.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/Applications/RemoteSelection/app.py Installation requirements: @@ -378,4 +378,4 @@ with SinglePageLayout(server) as layout: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/MiniApps/SimpleCone/ClientView.py b/src/Trame/MiniApps/SimpleCone/ClientView.py index c5d604cf3bab33896d7dd58630894e2822f201c4..bd893e1f8edcefe1ea1de8b0aa2fe0131c747a6c 100644 --- a/src/Trame/MiniApps/SimpleCone/ClientView.py +++ b/src/Trame/MiniApps/SimpleCone/ClientView.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/01_SimpleCone/ClientView.py Installation requirements: @@ -83,4 +83,4 @@ with SinglePageLayout(server) as layout: # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/MiniApps/SimpleCone/LocalRendering.py b/src/Trame/MiniApps/SimpleCone/LocalRendering.py index cb0913fb1d5cf84beb80285823da4ae1d334f56b..819f5f55efba4db55dbfa9513d746b4d38f7b6ae 100644 --- a/src/Trame/MiniApps/SimpleCone/LocalRendering.py +++ b/src/Trame/MiniApps/SimpleCone/LocalRendering.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: https://github.com/Kitware/trame/blob/master/examples/06_vtk/01_SimpleCone/LocalRendering.py Installation requirements: @@ -114,4 +114,4 @@ def show(**kwargs): # ----------------------------------------------------------------------------- if __name__ == "__main__": - server.start() \ No newline at end of file + server.start() diff --git a/src/Trame/MiniApps/SimpleCone/RemoteRendering.py b/src/Trame/MiniApps/SimpleCone/RemoteRendering.py index db1ae13e45860b50c98ae150a5088c20f164119e..efc9a1c8b84e1f8a8c5017cd3e2d28e52265bba8 100644 --- a/src/Trame/MiniApps/SimpleCone/RemoteRendering.py +++ b/src/Trame/MiniApps/SimpleCone/RemoteRendering.py @@ -1,4 +1,4 @@ -r""" +""" Original Code: - https://github.com/Kitware/trame/blob/master/examples/06_vtk/01_SimpleCone/ClassRemoteRendering.py - https://github.com/Kitware/trame/blob/master/examples/06_vtk/01_SimpleCone/RemoteRendering.py @@ -115,4 +115,4 @@ def main(**kwargs): if __name__ == "__main__": - main() \ No newline at end of file + main()