Geodot Plugin
Loading...
Searching...
No Matches
util.h
1#pragma once
2
3struct ExtentData {
4 ExtentData(double left, double right, double top, double down)
5 : left(left), right(right), top(top), down(down) {}
6
7 ExtentData() = default;
8
9 double left;
10 double right;
11 double top;
12 double down;
13};
Definition: util.h:3