Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Institute of Technical Acoustics (ITA)
VABase
Commits
7eb57640
Commit
7eb57640
authored
Oct 09, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refining file list getter
parent
322b9c75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
include/VABase.h
include/VABase.h
+19
-0
include/VAInterface.h
include/VAInterface.h
+1
-3
No files found.
include/VABase.h
View file @
7eb57640
...
...
@@ -78,6 +78,15 @@ public:
y
/=
l
;
z
/=
l
;
};
inline
CVAStruct
GetAsStruct
()
const
{
CVAStruct
oVec
;
oVec
[
"x"
]
=
x
;
oVec
[
"y"
]
=
y
;
oVec
[
"z"
]
=
z
;
return
oVec
;
};
};
inline
VABASE_API
bool
operator
==
(
const
VAVec3
&
a
,
const
VAVec3
&
b
)
...
...
@@ -149,6 +158,16 @@ public:
z
=
z_
;
w
=
w_
;
};
inline
CVAStruct
GetAsStruct
()
const
{
CVAStruct
oOrient
;
oOrient
[
"x"
]
=
x
;
oOrient
[
"y"
]
=
y
;
oOrient
[
"z"
]
=
z
;
oOrient
[
"w"
]
=
w
;
return
oOrient
;
};
};
//! Stream output operator for Quaternion
...
...
include/VAInterface.h
View file @
7eb57640
...
...
@@ -235,11 +235,9 @@ public:
//! Returns a struct with the hardware configuration
/**
* @param[in] bFilterEnabled If true, only include enabled sections.
*
* @return Encapsulated hardware configuration
*/
virtual
CVAStruct
GetHardwareConfiguration
(
const
bool
bFilterEnabled
=
true
)
const
=
0
;
virtual
CVAStruct
GetHardwareConfiguration
()
const
=
0
;
//! Create a directivity from a set of parameters
/**
...
...
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