Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Institute of Technical Acoustics (ITA)
toolbox
Commits
a4a45f3a
Commit
a4a45f3a
authored
6 years ago
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Downloads
Patches
Plain Diff
Adding itaVA class with shutdown method
parent
1e580e8f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/VirtualAcoustics/VA/itaVA.m
+21
-0
21 additions, 0 deletions
applications/VirtualAcoustics/VA/itaVA.m
with
21 additions
and
0 deletions
applications/VirtualAcoustics/VA/itaVA.m
+
21
−
0
View file @
a4a45f3a
...
@@ -204,6 +204,27 @@ classdef itaVA < handle
...
@@ -204,6 +204,27 @@ classdef itaVA < handle
state
=
VAMatlab
(
'get_server_state'
,
this
.
handle
);
state
=
VAMatlab
(
'get_server_state'
,
this
.
handle
);
end
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
)
function
connect_tracker
(
this
,
remote_ip
,
local_ip
)
% Connects to a local NatNet tracking server
% Connects to a local NatNet tracking server
%
%
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment