diff options
| author | jussi | 2023-04-25 19:28:54 +0300 |
|---|---|---|
| committer | jussi | 2023-04-25 19:28:54 +0300 |
| commit | 8b6337446dd79faf226ea9df40d4d06d81c38436 (patch) | |
| tree | 14e55e4c50139c932c3d959583532675fe7be19a /API.md | |
| parent | a9ce78128d919e9798d7d2ec043879a4c685a9d1 (diff) | |
| download | reilua-enhanced-8b6337446dd79faf226ea9df40d4d06d81c38436.tar.gz reilua-enhanced-8b6337446dd79faf226ea9df40d4d06d81c38436.tar.bz2 reilua-enhanced-8b6337446dd79faf226ea9df40d4d06d81c38436.zip | |
DrawCapsule and DrawCapsuleWires. Free Camera3D example.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -4081,6 +4081,24 @@ Draw a cylinder wires with base at startPos and top at endPos --- +> success = RL.DrawCapsule( Vector3 startPos, Vector3 endPos, float radius, int slices, int rings, Color color ) + +Draw a capsule with the center of its sphere caps at startPos and endPos + +- Failure return false +- Success return true + +--- + +> success = RL.DrawCapsuleWires( Vector3 startPos, Vector3 endPos, float radius, int slices, int rings, Color color ) + +Draw capsule wireframe with the center of its sphere caps at startPos and endPos + +- Failure return false +- Success return true + +--- + > success = RL.DrawPlane( Vector3 centerPos, Vector2 size, Color color ) Draw a plane XZ |
