Geodot Plugin
Loading...
Searching...
No Matches
geotransform.h
1#ifndef GEODOT_H
2#define GEODOT_H
3
4#include <godot_cpp/classes/global_constants.hpp>
5#include <godot_cpp/classes/node.hpp>
6
7#include <godot_cpp/core/binder_common.hpp>
8
9#include "VectorExtractor.h"
10#include "defines.h"
11#include "geodata.h"
12
13namespace godot {
14
15class EXPORT GeoTransform : public Object {
16 GDCLASS(GeoTransform, Object)
17
18 protected:
19 static void _bind_methods();
20
21 public:
22 GeoTransform() = default;
24
25 void set_transform(int from, int to);
26
29 Vector3 transform_coordinates(Vector3 coordinates);
30
31 private:
32 CoordinateTransform *transform;
33};
34
35} // namespace godot
36
37#endif
Definition: VectorExtractor.h:23
Definition: geotransform.h:15