We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b537f54 commit 902ff99Copy full SHA for 902ff99
1 file changed
src/main/java/eu/mihosoft/vrl/v3d/CSGClient.java
@@ -173,12 +173,12 @@ public static boolean isRunning() {
173
174
public static void main(String[] args) {
175
176
- String hostname = "localhost";
+ String hostname = "192.168.10.125";
177
int port = 3742;
178
179
// Create client with try-with-resources for automatic cleanup
180
try {
181
- File f = new File(System.getProperty("user.home")+"/File.txt");
+ File f = new File("/opt/File.txt");
182
CSGClient.start(hostname, port, f);
183
// Set a low number to ensure the Server is used. this defaults to 200
184
CSG.setMinPolygonsForOffloading(4);
0 commit comments