LeviLamina
Loading...
Searching...
No Matches
RectangleArea.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class RectangleArea {
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 bool isOverlapping(::RectangleArea const& rect) const;
19 // NOLINTEND
20};
Definition RectangleArea.h:5