You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/raylib.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1577,9 +1577,9 @@ RLAPI void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slice
1577
1577
RLAPIvoidDrawCylinder(Vector3position, floatradiusTop, floatradiusBottom, floatheight, intslices, Colorcolor); // Draw a cylinder/cone
1578
1578
RLAPIvoidDrawCylinderEx(Vector3startPos, Vector3endPos, floatstartRadius, floatendRadius, intsides, Colorcolor); // Draw a cylinder with base at startPos and top at endPos
RLAPIvoidDrawCylinderWiresEx(Vector3startPos, Vector3endPos, floatstartRadius, floatendRadius, intsides, Colorcolor); // Draw a cylinder wires with base at startPos and top at endPos
1581
-
RLAPIvoidDrawCapsule(Vector3startPos, Vector3endPos, floatradius, intslices, intrings, Colorcolor); // Draw a capsule with the center of its sphere caps at startPos and endPos
1582
-
RLAPIvoidDrawCapsuleWires(Vector3startPos, Vector3endPos, floatradius, intslices, intrings, Colorcolor); // Draw capsule wireframe with the center of its sphere caps at startPos and endPos
1580
+
RLAPIvoidDrawCylinderWiresEx(Vector3startPos, Vector3endPos, floatstartRadius, floatendRadius, intslices, Colorcolor); // Draw a cylinder wires with base at startPos and top at endPos
1581
+
RLAPIvoidDrawCapsule(Vector3startPos, Vector3endPos, floatradius, intrings, intslices, Colorcolor); // Draw a capsule with the center of its sphere caps at startPos and endPos
1582
+
RLAPIvoidDrawCapsuleWires(Vector3startPos, Vector3endPos, floatradius, intrings, intslices, Colorcolor); // Draw capsule wireframe with the center of its sphere caps at startPos and endPos
1583
1583
RLAPIvoidDrawPlane(Vector3centerPos, Vector2size, Colorcolor); // Draw a plane XZ
1584
1584
RLAPIvoidDrawRay(Rayray, Colorcolor); // Draw a ray line
1585
1585
RLAPIvoidDrawGrid(intslices, floatspacing); // Draw a grid (centered at (0, 0, 0))
0 commit comments