Core: Make all Variant math types structs
Some were declared as structs (public by default) and others as classes (private by default) but in practice all these math types exposed as Variants are all 100% public.
This commit is contained in:
parent
8495be9cec
commit
5ddb518496
9 changed files with 26 additions and 31 deletions
|
|
@ -28,8 +28,8 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef DYNAMICBVH_H
|
||||
#define DYNAMICBVH_H
|
||||
#ifndef DYNAMIC_BVH_H
|
||||
#define DYNAMIC_BVH_H
|
||||
|
||||
#include "core/math/aabb.h"
|
||||
#include "core/templates/list.h"
|
||||
|
|
@ -474,4 +474,4 @@ void DynamicBVH::ray_query(const Vector3 &p_from, const Vector3 &p_to, QueryResu
|
|||
} while (depth > 0);
|
||||
}
|
||||
|
||||
#endif // DYNAMICBVH_H
|
||||
#endif // DYNAMIC_BVH_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue