mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e6cba99744
Summary: Geometry only contains the Vector struct now, renaming it for accuracy Changelog: [Internal] Reviewed By: stephinphection Differential Revision: D41453351 fbshipit-source-id: 973b4a03208f4eeb0e209ea0aa58f5beca17c483
24 lines
410 B
C++
24 lines
410 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/renderer/graphics/Float.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
struct Vector {
|
|
Float x{0};
|
|
Float y{0};
|
|
Float z{0};
|
|
Float w{0};
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|