LeviLamina
Loading...
Searching...
No Matches
RectangleArea.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 4, float> _x0;
10 ::ll::TypedStorage<4, 4, float> _x1;
11 ::ll::TypedStorage<4, 4, float> _y0;
12 ::ll::TypedStorage<4, 4, float> _y1;
13 // NOLINTEND
14
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI_C ::RectangleArea grow(::glm::vec2 const& f) const;
19
20 MCAPI_C bool isOverlapping(::RectangleArea const& rect) const;
21
22 MCAPI_C ::RectangleArea translate(float tx, float ty) const;
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCAPI_C void* $ctor(float x0, float y0, float x1, float y1, bool checkForValidity);
29 // NOLINTEND
30};
Definition RectangleArea.h:5