Skip to content
Paweł Waligóra edited this page Sep 17, 2024 · 2 revisions

entryb

preamble key-word since v2.0.0

entries in buffer

Behaviour in main preamble.

Outputs how many entries are in each of the buffers in a resulting output file.

Example

begin file a.out
entryb
; vertex.x vertex.y vertex.z
; normal.x normal.y normal.z
; indice.0 indice.1 indices.2

Suppose processed mesh has 12 vertices and 6 indices. entryb key-word will produce following values: 12, 12, 6.

Behaviour in buffer preamble.

Outputs how many entries are in the buffer in a resulting output file.

Example

begin a

entryb ; vertex.x vertex.y vertex.z
entryb ; normal.x normal.y normal.z
entryb ; indice.0 indice.1 indices.2
end

Suppose processed mesh has 12 vertices and 6 indices. entryb key-word will produce following values: 12 in first 2 buffers and 6 in 3rd buffer.

Clone this wiki locally