|
92 | 92 | <ul class="current">
|
93 | 93 | <li class="toctree-l1 current"><a class="current reference internal" href="#">Python Bindings for Raylib 3.7</a></li>
|
94 | 94 | <li class="toctree-l1"><a class="reference internal" href="#install">Install</a></li>
|
95 |
| -<li class="toctree-l1"><a class="reference internal" href="#how-to-use">How to use</a></li> |
| 95 | +<li class="toctree-l1"><a class="reference internal" href="#how-to-use">How to use</a><ul> |
| 96 | +<li class="toctree-l2"><a class="reference internal" href="#if-you-are-familiar-with-c-coding-and-the-raylib-c-library-and-you-want-to-use-an-exact-copy-of-the-c-api">If you are familiar with C coding and the Raylib C library and you want to use an exact copy of the C API</a></li> |
| 97 | +<li class="toctree-l2"><a class="reference internal" href="#if-you-prefer-a-slightly-more-pythonistic-api-and-don-t-mind-it-might-be-slightly-slower">If you prefer a slightly more Pythonistic API and don’t mind it might be slightly slower</a></li> |
| 98 | +<li class="toctree-l2"><a class="reference internal" href="#if-you-insist-on-dynamic-bindings-and-don-t-care-that-they-are-slower-and-less-safe">If you insist on dynamic bindings and don’t care that they are slower and less safe</a></li> |
| 99 | +</ul> |
| 100 | +</li> |
96 | 101 | <li class="toctree-l1"><a class="reference internal" href="#rlzero">RLZero</a></li>
|
97 | 102 | <li class="toctree-l1"><a class="reference internal" href="#help-wanted">Help wanted</a></li>
|
98 | 103 | <li class="toctree-l1"><a class="reference internal" href="#performance">Performance</a><ul>
|
|
103 | 108 | <li class="toctree-l1"><a class="reference internal" href="#advert">Advert</a></li>
|
104 | 109 | <li class="toctree-l1"><a class="reference internal" href="pyray.html">raylib.pyray</a></li>
|
105 | 110 | <li class="toctree-l1"><a class="reference internal" href="raylib.html">raylib.static</a></li>
|
| 111 | +<li class="toctree-l1"><a class="reference internal" href="dynamic.html">raylib.dynamic</a></li> |
106 | 112 | </ul>
|
107 | 113 |
|
108 | 114 |
|
@@ -190,12 +196,18 @@ <h1>Install<a class="headerlink" href="#install" title="Permalink to this headli
|
190 | 196 | <h1>How to use<a class="headerlink" href="#how-to-use" title="Permalink to this headline">¶</a></h1>
|
191 | 197 | <p>There are three different ways of using this binding. You only need to pick one method, but you
|
192 | 198 | can combine two methods in one program if you want to.</p>
|
193 |
| -<p>If you are familiar with C coding and the Raylib C library and you want to use an exact copy of |
194 |
| -the C API, choose raylib.static.</p> |
195 |
| -<p>If you prefer a slightly more Pythonistic API and don’t mind it might be slightly slower, choose |
196 |
| -raylib.pyray.</p> |
197 |
| -<p>If you insist on dynamic bindings and don’t care that they are slower and less safe, choose |
198 |
| -raylib.dynamic.</p> |
| 199 | +<div class="section" id="if-you-are-familiar-with-c-coding-and-the-raylib-c-library-and-you-want-to-use-an-exact-copy-of-the-c-api"> |
| 200 | +<h2>If you are familiar with C coding and the Raylib C library and you want to use an exact copy of the C API<a class="headerlink" href="#if-you-are-familiar-with-c-coding-and-the-raylib-c-library-and-you-want-to-use-an-exact-copy-of-the-c-api" title="Permalink to this headline">¶</a></h2> |
| 201 | +<p>Use <a class="reference external" href="https://electronstudio.github.io/raylib-python-cffi/raylib.html">raylib.static</a>.</p> |
| 202 | +</div> |
| 203 | +<div class="section" id="if-you-prefer-a-slightly-more-pythonistic-api-and-don-t-mind-it-might-be-slightly-slower"> |
| 204 | +<h2>If you prefer a slightly more Pythonistic API and don’t mind it might be slightly slower<a class="headerlink" href="#if-you-prefer-a-slightly-more-pythonistic-api-and-don-t-mind-it-might-be-slightly-slower" title="Permalink to this headline">¶</a></h2> |
| 205 | +<p>Use <a class="reference external" href="https://electronstudio.github.io/raylib-python-cffi/pyray.html">raylib.pyray</a>.</p> |
| 206 | +</div> |
| 207 | +<div class="section" id="if-you-insist-on-dynamic-bindings-and-don-t-care-that-they-are-slower-and-less-safe"> |
| 208 | +<h2>If you insist on dynamic bindings and don’t care that they are slower and less safe<a class="headerlink" href="#if-you-insist-on-dynamic-bindings-and-don-t-care-that-they-are-slower-and-less-safe" title="Permalink to this headline">¶</a></h2> |
| 209 | +<p>Use <a class="reference external" href="https://electronstudio.github.io/raylib-python-cffi/dynamic.html">raylib.dynamic</a>.</p> |
| 210 | +</div> |
199 | 211 | </div>
|
200 | 212 | <div class="tex2jax_ignore mathjax_ignore section" id="rlzero">
|
201 | 213 | <h1>RLZero<a class="headerlink" href="#rlzero" title="Permalink to this headline">¶</a></h1>
|
|
0 commit comments