| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .TH "rtcGetGeometryFirstHalfEdge" "3" "" "" "Embree Ray Tracing Kernels 3"
- .SS NAME
- .IP
- .nf
- \f[C]
- rtcGetGeometryFirstHalfEdge\ \-\ returns\ the\ first\ half\ edge\ of\ a\ face
- \f[]
- .fi
- .SS SYNOPSIS
- .IP
- .nf
- \f[C]
- #include\ <embree3/rtcore.h>
- unsigned\ int\ rtcGetGeometryFirstHalfEdge(
- \ \ RTCGeometry\ geometry,
- \ \ unsigned\ int\ faceID
- );
- \f[]
- .fi
- .SS DESCRIPTION
- .PP
- The \f[C]rtcGetGeometryFirstHalfEdge\f[] function returns the ID of the
- first half edge belonging to the specified face (\f[C]faceID\f[]
- argument).
- For instance in the following example the first half edge of face
- \f[C]f1\f[] is \f[C]e4\f[].
- .IP
- .nf
- \f[C]
- \f[]
- .fi
- .PP
- This function can only be used for subdivision geometries.
- As all topologies of a subdivision geometry share the same face buffer
- the function does not depend on the topology ID.
- .PP
- Here f0 to f7 are 8 quadrilateral faces with 4 vertices each.
- The edges e0 to e23 of these faces are shown with their orientation.
- For each face the ID of the edges corresponds to the slots the face
- occupies in the index array of the geometry.
- E.g.
- as the indices of face f1 start at location 4 of the index array, the
- first edge is edge e4, the next edge e5, etc.
- .SS EXIT STATUS
- .PP
- On failure an error code is set that can be queried using
- \f[C]rtcGetDeviceError\f[].
- .SS SEE ALSO
- .PP
- [rtcGetGeometryFirstHalfEdge], [rtcGetGeometryFace],
- [rtcGetGeometryOppositeHalfEdge], [rtcGetGeometryNextHalfEdge],
- [rtcGetGeometryPreviousHalfEdge]
|