mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 12:21:23 +00:00
14 lines
334 B
C++
14 lines
334 B
C++
#include "vector3d_pack.h"
|
|
|
|
#include "native_type_test_generated.h"
|
|
|
|
namespace flatbuffers {
|
|
Geometry::Vector3D Pack(const Native::Vector3D& obj) {
|
|
return Geometry::Vector3D(obj.x, obj.y, obj.z);
|
|
}
|
|
|
|
const Native::Vector3D UnPack(const Geometry::Vector3D& obj) {
|
|
return Native::Vector3D(obj.x(), obj.y(), obj.z());
|
|
}
|
|
}
|