SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
WorldCentroid.h
Go to the documentation of this file.
1
17/*
18 * WorldCentroid.h
19 *
20 * Created on: Nov 21, 2016
21 * Author: mschefer
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_WORLDCENTROID_WORLDCENTROID_H_
25#define _SEIMPLEMENTATION_PLUGIN_WORLDCENTROID_WORLDCENTROID_H_
26
27#include "SEUtils/Types.h"
30
31namespace SourceXtractor {
32
33class WorldCentroid : public Property {
34public:
35
36 virtual ~WorldCentroid() = default;
37
38 WorldCentroid(SeDouble centroid_alpha, SeDouble centroid_delta)
39 : m_centroid_alpha(centroid_alpha), m_centroid_delta(centroid_delta) {}
40
42 return m_centroid_alpha;
43 }
44
46 return m_centroid_delta;
47 }
48
52
53private:
55
56};
57
58}
59
60#endif
Base class for all Properties. (has no actual content)
Definition Property.h:33
SeDouble getCentroidDelta() const
WorldCentroid(SeDouble centroid_alpha, SeDouble centroid_delta)
SeDouble getCentroidAlpha() const
WorldCoordinate getCentroid() const
virtual ~WorldCentroid()=default
SeFloat64 SeDouble
Definition Types.h:33