We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d6d90a commit 272f992Copy full SHA for 272f992
StkEngineApplications/Java/STKEngineNoGraphics/src/Main.java
@@ -0,0 +1,20 @@
1
+import agi.core.AgCoreException;
2
+import agi.core.AgCore_JNI;
3
+public class Main {
4
+ public static void main(String[] args) {
5
+ try {
6
+ STKEngine stkEngine = new STKEngine();
7
+ AgCore_JNI.xInitThreads();
8
+
9
+ stkEngine.compute();
10
+ }
11
+ catch (AgCoreException e) {
12
+ e.printHexHresult();
13
+ e.printStackTrace();
14
15
+ catch (Throwable t) {
16
+ t.printStackTrace();
17
18
19
20
+}
0 commit comments