EchoMap 2026-07-25 6d3977c
An experimental cross-platform digital signal processing application for sound-source localisation.
Loading...
Searching...
No Matches
Position.hpp
Go to the documentation of this file.
1
9
10#ifndef ECHOMAP_POSITION_HPP
11#define ECHOMAP_POSITION_HPP
12
13namespace echomap
14{
15
20{
21 float x = 0.0f;
22 float y = 0.0f;
23 float z = 0.0f;
24};
25
26} // namespace echomap
27
28#endif // ECHOMAP_POSITION_HPP
The main EchoMap outermost namespace for all non-exported symbols.
A generic 3D position structure.
Definition Position.hpp:20
float y
The Y co-ordinate.
Definition Position.hpp:22
float x
The X co-ordinate.
Definition Position.hpp:21
float z
The Z co-ordinate.
Definition Position.hpp:23