Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
toolbox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
7
Issues
7
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
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
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