瀏覽代碼

Merge pull request #4843 from theundergroundsorcerer/DrawCircleSector-quickfix

Add early return when angles are equal in DrawCircleSector and DrawCircleSectorLine functions.
pull/4845/head
Ray 2 週之前
committed by GitHub
父節點
當前提交
cd9206956c
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: B5690EEEBB952194
共有 1 個檔案被更改,包括 2 行新增0 行删除
  1. +2
    -0
      src/rshapes.c

+ 2
- 0
src/rshapes.c 查看文件

@ -285,6 +285,7 @@ void DrawCircleV(Vector2 center, float radius, Color color)
// Draw a piece of a circle
void DrawCircleSector(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color)
{
if (startAngle == endAngle) return;
if (radius <= 0.0f) radius = 0.1f; // Avoid div by zero
// Function expects (endAngle > startAngle)
@ -376,6 +377,7 @@ void DrawCircleSector(Vector2 center, float radius, float startAngle, float endA
// Draw a piece of a circle outlines
void DrawCircleSectorLines(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color)
{
if (startAngle == endAngle) return;
if (radius <= 0.0f) radius = 0.1f; // Avoid div by zero issue
// Function expects (endAngle > startAngle)

Loading…
取消
儲存