MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / ply_get_next_element

Function ply_get_next_element

src/IO/rply.c:697–704  ·  view source on GitHub ↗

---------------------------------------------------------------------- * Query support functions * ---------------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

695 * Query support functions
696 * ---------------------------------------------------------------------- */
697p_ply_element ply_get_next_element(p_ply ply,
698 p_ply_element last) {
699 assert(ply);
700 if (!last) return ply->element;
701 last++;
702 if (last < ply->element + ply->nelements) return last;
703 else return NULL;
704}
705
706int ply_get_element_info(p_ply_element element, const char** name,
707 long *ninstances) {

Callers 1

parse_plyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected