Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Karin Luo Loh
toolbox
Commits
a4a45f3a
Commit
a4a45f3a
authored
Nov 06, 2018
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding itaVA class with shutdown method
parent
1e580e8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
applications/VirtualAcoustics/VA/itaVA.m
applications/VirtualAcoustics/VA/itaVA.m
+21
-0
No files found.
applications/VirtualAcoustics/VA/itaVA.m
View file @
a4a45f3a
...
...
@@ -204,6 +204,27 @@ classdef itaVA < handle
state
=
VAMatlab
(
'get_server_state'
,
this
.
handle
);
end
function
shutdown_server
(
this
)
% Attempts to shut down the remote server
%
% Server shutdown may be prohibited by the server configuration.
% Shutting donw the server from client side is meant for cases
% when the server is called by a script to run e.g. a simulation
% while the rendering output is recorded. The export is triggered
% when the core is finalized (or shut down).
%
% Parameters:
%
% None
%
% Return values:
%
% None
%
VAMatlab
(
'call_module'
,
this
.
handle
,
'VACore'
,
struct
(
'shutdown'
,
true
)
);
end
function
connect_tracker
(
this
,
remote_ip
,
local_ip
)
% Connects to a local NatNet tracking server
%
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment