MCPcopy Create free account
hub / github.com/SaschaWillems/HowToVulkan / face_t

Class face_t

source/external/tinyobj/tiny_obj_loader.h:707–714  ·  view source on GitHub ↗

Internal data structure for face representation index + smoothing group.

Source from the content-addressed store, hash-verified

705// Internal data structure for face representation
706// index + smoothing group.
707struct face_t {
708 unsigned int
709 smoothing_group_id; // smoothing group id. 0 = smoothing groupd is off.
710 int pad_;
711 std::vector<vertex_index_t> vertex_indices; // face vertex indices.
712
713 face_t() : smoothing_group_id(0), pad_(0) {}
714};
715
716// Internal data structure for line representation
717struct __line_t {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected