Logo
Rectangle.h
1#pragma once
2
3namespace SharpKmyMath
4{
5 public value class Rectangle
6 {
7 public:
8 float x, y, height, width;
9 Rectangle(float _x, float _y, float _w, float _h)
10 {
11 x = _x;
12 y = _y;
13 height = _h;
14 width = _w;
15 }
16 };
17}
Definition: Rectangle.h:6
float height
Definition: Rectangle.h:8
Rectangle(float _x, float _y, float _w, float _h)
Definition: Rectangle.h:9
float width
Definition: Rectangle.h:8
float x
Definition: Rectangle.h:8
float y
Definition: Rectangle.h:8
Definition: RefCapture.h:3