MCPcopy Create free account
hub / github.com/RenderKit/embree / Vertex

Class Vertex

tutorials/common/scenegraph/obj_loader.cpp:10–15  ·  view source on GitHub ↗

! Three-index vertex, indexing start at 0, -1 means invalid vertex. */

Source from the content-addressed store, hash-verified

8{
9 /*! Three-index vertex, indexing start at 0, -1 means invalid vertex. */
10 struct Vertex {
11 unsigned int v, vt, vn;
12 Vertex() {};
13 Vertex(unsigned int v) : v(v), vt(v), vn(v) {};
14 Vertex(unsigned int v, unsigned int vt, unsigned int vn) : v(v), vt(vt), vn(vn) {};
15 };
16
17 struct Crease {
18 float w;

Callers 7

flushTriGroupMethod · 0.70
CubicBezierCurveMethod · 0.50
evalMethod · 0.50
eval_dtMethod · 0.50
convert_to_bezierFunction · 0.50
eval_duduFunction · 0.50
eval_dvdvFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected