![]() |
Wise&mystical
1.0
Project about Europe
|
Go to the source code of this file.
Macros | |
#define | SMOOTH_CIRCLE_ERROR_RATE 0.5f |
rshapes - Basic functions to draw 2d shapes and check collisions More... | |
#define | BEZIER_LINE_DIVISIONS 24 |
Functions | |
void | SetShapesTexture (Texture2D texture, Rectangle source) |
void | DrawPixel (int posX, int posY, Color color) |
void | DrawPixelV (Vector2 position, Color color) |
void | DrawLine (int startPosX, int startPosY, int endPosX, int endPosY, Color color) |
void | DrawLineV (Vector2 startPos, Vector2 endPos, Color color) |
void | DrawLineEx (Vector2 startPos, Vector2 endPos, float thick, Color color) |
void | DrawLineBezier (Vector2 startPos, Vector2 endPos, float thick, Color color) |
void | DrawLineBezierQuad (Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color) |
void | DrawLineBezierCubic (Vector2 startPos, Vector2 endPos, Vector2 startControlPos, Vector2 endControlPos, float thick, Color color) |
void | DrawLineStrip (Vector2 *points, int pointCount, Color color) |
void | DrawCircle (int centerX, int centerY, float radius, Color color) |
void | DrawCircleSector (Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color) |
void | DrawCircleSectorLines (Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color) |
void | DrawCircleGradient (int centerX, int centerY, float radius, Color color1, Color color2) |
void | DrawCircleV (Vector2 center, float radius, Color color) |
void | DrawCircleLines (int centerX, int centerY, float radius, Color color) |
void | DrawEllipse (int centerX, int centerY, float radiusH, float radiusV, Color color) |
void | DrawEllipseLines (int centerX, int centerY, float radiusH, float radiusV, Color color) |
void | DrawRing (Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color) |
void | DrawRingLines (Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color) |
void | DrawRectangle (int posX, int posY, int width, int height, Color color) |
void | DrawRectangleV (Vector2 position, Vector2 size, Color color) |
void | DrawRectangleRec (Rectangle rec, Color color) |
void | DrawRectanglePro (Rectangle rec, Vector2 origin, float rotation, Color color) |
void | DrawRectangleGradientV (int posX, int posY, int width, int height, Color color1, Color color2) |
void | DrawRectangleGradientH (int posX, int posY, int width, int height, Color color1, Color color2) |
void | DrawRectangleGradientEx (Rectangle rec, Color col1, Color col2, Color col3, Color col4) |
void | DrawRectangleLines (int posX, int posY, int width, int height, Color color) |
void | DrawRectangleLinesEx (Rectangle rec, float lineThick, Color color) |
void | DrawRectangleRounded (Rectangle rec, float roundness, int segments, Color color) |
void | DrawRectangleRoundedLines (Rectangle rec, float roundness, int segments, float lineThick, Color color) |
void | DrawTriangle (Vector2 v1, Vector2 v2, Vector2 v3, Color color) |
void | DrawTriangleLines (Vector2 v1, Vector2 v2, Vector2 v3, Color color) |
void | DrawTriangleFan (Vector2 *points, int pointCount, Color color) |
void | DrawTriangleStrip (Vector2 *points, int pointCount, Color color) |
void | DrawPoly (Vector2 center, int sides, float radius, float rotation, Color color) |
void | DrawPolyLines (Vector2 center, int sides, float radius, float rotation, Color color) |
void | DrawPolyLinesEx (Vector2 center, int sides, float radius, float rotation, float lineThick, Color color) |
bool | CheckCollisionPointRec (Vector2 point, Rectangle rec) |
bool | CheckCollisionPointCircle (Vector2 point, Vector2 center, float radius) |
bool | CheckCollisionPointTriangle (Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3) |
bool | CheckCollisionRecs (Rectangle rec1, Rectangle rec2) |
bool | CheckCollisionCircles (Vector2 center1, float radius1, Vector2 center2, float radius2) |
bool | CheckCollisionCircleRec (Vector2 center, float radius, Rectangle rec) |
bool | CheckCollisionLines (Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, Vector2 *collisionPoint) |
bool | CheckCollisionPointLine (Vector2 point, Vector2 p1, Vector2 p2, int threshold) |
Rectangle | GetCollisionRec (Rectangle rec1, Rectangle rec2) |
Variables | |
Texture2D | texShapes = { 1, 1, 1, 1, 7 } |
Rectangle | texShapesRec = { 0.0f, 0.0f, 1.0f, 1.0f } |
#define SMOOTH_CIRCLE_ERROR_RATE 0.5f |
rshapes - Basic functions to draw 2d shapes and check collisions
NOTES: Shapes can be draw using 3 types of primitives: LINES, TRIANGLES and QUADS. Some functions implement two drawing options: TRIANGLES and QUADS, by default TRIANGLES are used but QUADS implementation can be selected with SUPPORT_QUADS_DRAW_MODE define
Some functions define texture coordinates (rlTexCoord2f()) for the shapes and use a user-provided texture with SetShapesTexture(), the pourpouse of this implementation is allowing to reduce draw calls when combined with a texture-atlas.
By default, raylib sets the default texture and rectangle at InitWindow()[rcore] to one white character of default font [rtext], this way, raylib text and shapes can be draw with a single draw call and it also allows users to configure it the same way with their own fonts.
CONFIGURATION:
#define SUPPORT_MODULE_RSHAPES rshapes module is included in the build
#define SUPPORT_QUADS_DRAW_MODE Use QUADS instead of TRIANGLES for drawing when possible. Lines-based shapes still use LINES
LICENSE: zlib/libpng
Copyright (c) 2013-2022 Ramon Santamaria (@raysan5)
This software is provided "as-is", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
void DrawCircle | ( | int | centerX, |
int | centerY, | ||
float | radius, | ||
Color | color | ||
) |
void DrawCircleLines | ( | int | centerX, |
int | centerY, | ||
float | radius, | ||
Color | color | ||
) |
void DrawEllipse | ( | int | centerX, |
int | centerY, | ||
float | radiusH, | ||
float | radiusV, | ||
Color | color | ||
) |
void DrawEllipseLines | ( | int | centerX, |
int | centerY, | ||
float | radiusH, | ||
float | radiusV, | ||
Color | color | ||
) |
void DrawLine | ( | int | startPosX, |
int | startPosY, | ||
int | endPosX, | ||
int | endPosY, | ||
Color | color | ||
) |
void DrawPixel | ( | int | posX, |
int | posY, | ||
Color | color | ||
) |
void DrawRectangle | ( | int | posX, |
int | posY, | ||
int | width, | ||
int | height, | ||
Color | color | ||
) |
void DrawRectangleLines | ( | int | posX, |
int | posY, | ||
int | width, | ||
int | height, | ||
Color | color | ||
) |