"Tessellation" magic tool documentation

This commit is contained in:
Bill Kendrick 2024-10-09 20:09:49 -07:00
parent 076ccbd947
commit c40479c263
89 changed files with 682 additions and 53 deletions

View file

@ -1289,13 +1289,13 @@ See also:
<dt>fjölvi</dt>
<dd>
A C construct that looks similar to a C function, but is simply a #define that is expanded 'inline'. For example, if you declared the macro "<code>#define ADD(A,B) ((A)+(B))</code>", and then used it with "<code>c = ADD(1,2);</code>", that line of code would literally expand to "<code>c = ((1) + (2));</code>", or more simply, "<code>c = 1 + 2;</code>". </dd>
<dt>fleytitala</dt>
<dt><code>float</code></dt>
<dd>
See "floating point" </dd>
<dt>floating point</dt>
<dd>
<i>Definition not yet presented.</i> <br/>
See also: "integer" </dd>
<dt><code>float</code></dt>
<dd>
See "fleytitala" </dd>
<dt><code>format</code></dt>
<dd>
An <code>SDL_Surface</code> element (a pointer to an <code>SDL_PixelFormat</code> structure) that contains information about a surface; for example, the number of bits used to represent each pixel).<br/>Refer to the "<code>SDL_PixelFormat(3)</code>" <i>man page</i>. </dd>
@ -1352,7 +1352,7 @@ See also:
<dt>integer</dt>
<dd>
<i>Definition not yet presented.</i> <br/>
See also: "fleytitala" </dd>
See also: "floating point" </dd>
<dt>Krita</dt>
<dd>
An Open Source image manipulation and paint program. <br/>