Fixed minor indenting issue on doc-geo.txt

This commit is contained in:
_ 2018-04-26 22:26:33 -07:00
parent a5f91d155f
commit 9e595dd165

View File

@ -72,12 +72,12 @@ Functions
const char*, the buffer containing the whole mesh package. const char*, the buffer containing the whole mesh package.
output: output:
true on success. true on success.
false when failing checks against segmentation faults. false when failing checks against segmentation faults.
If parameter 'struct Batch*' is NULL. If parameter 'struct Batch*' is NULL.
If parameter 'const char*' is NULL. If parameter 'const char*' is NULL.
bool getmesh(struct Mesh*, bool getmesh(struct Mesh*,
unsigned int, unsigned int,
@ -85,23 +85,23 @@ Functions
unsigned int); unsigned int);
Retrives the i-th Mesh in a buffer. Retrives the i-th Mesh in a buffer.
input: input:
Pointer to mesh. Pointer to mesh.
Pass by reference of a struct to the function. Pass by reference of a struct to the function.
unsigned int, the i-th instance of Mesh in the buffer. unsigned int, the i-th instance of Mesh in the buffer.
const char*, the buffer containing the whole mesh package. const char*, the buffer containing the whole mesh package.
output: output:
true on success. true on success.
false when failing checks against segmentation faults. false when failing checks against segmentation faults.
If parameter 'struct Mesh*' is NULL. If parameter 'struct Mesh*' is NULL.
If attribute 'b' of parameter 'struct Mesh' is NULL. If attribute 'b' of parameter 'struct Mesh' is NULL.
if parameter 'const char*' is NULL. if parameter 'const char*' is NULL.
When file size is detected to be too small for a given i-th When file size is detected to be too small for a given i-th
Mesh. Mesh.
Example logic to interact with all meshes: Example logic to interact with all meshes:
{ {