8#ifndef GRAPHICS_PRIMITIVES_GRECTANGLE_H_
9#define GRAPHICS_PRIMITIVES_GRECTANGLE_H_
16 gRectangle(
float x,
float y,
float w,
float h,
bool isFilled);
19 void setPoints(
float x,
float y,
float w,
float h,
bool isFilled);
22 void draw(
float x,
float y,
float w,
float h,
bool isFilled);
25 std::vector<gVertex> verticessb;
26 std::vector<gIndex> indicessb;
29 void setRectanglePoints(
float x,
float y,
float w,
float h,
bool isFilled);
Definition gRectangle.h:13
void setPoints(float x, float y, float w, float h, bool isFilled)
gRectangle(float x, float y, float w, float h, bool isFilled)
void draw(float x, float y, float w, float h, bool isFilled)