MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/FleX / operator <

Method operator <

core/mesh.cpp:381–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

379 }
380
381 bool operator < (const VertexKey& rhs) const
382 {
383 if (v != rhs.v)
384 return v < rhs.v;
385 else if (vt != rhs.vt)
386 return vt < rhs.vt;
387 else
388 return vn < rhs.vn;
389 }
390};
391
392Mesh* ImportMeshFromObj(const char* path)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected