.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "rtcSetGeometryPointQueryFunction" "3" "" "" "Embree Ray Tracing Kernels 4" .hy .SS NAME .IP .nf \f[C] rtcSetGeometryPointQueryFunction - sets the point query callback function for a geometry \f[R] .fi .SS SYNOPSIS .IP .nf \f[C] #include struct RTCPointQueryFunctionArguments { // the (world space) query object that was passed as an argument of rtcPointQuery. struct RTCPointQuery* query; // used for user input/output data. Will not be read or modified internally. void* userPtr; // primitive and geometry ID of primitive unsigned int primID; unsigned int geomID; // the context with transformation and instance ID stack struct RTCPointQueryContext* context; // scaling factor indicating whether the current instance transformation // is a similarity transformation. float similarityScale; }; typedef bool (*RTCPointQueryFunction)( struct RTCPointQueryFunctionArguments* args ); void rtcSetGeometryPointQueryFunction( RTCGeometry geometry, RTCPointQueryFunction queryFunc ); \f[R] .fi .SS DESCRIPTION .PP The \f[C]rtcSetGeometryPointQueryFunction\f[R] function registers a point query callback function (\f[C]queryFunc\f[R] argument) for the specified geometry (\f[C]geometry\f[R] argument). .PP Only a single callback function can be registered per geometry and further invocations overwrite the previously set callback function. Passing \f[C]NULL\f[R] as function pointer disables the registered callback function. .PP The registered callback function is invoked by [rtcPointQuery] for every primitive of the geometry that intersects the corresponding point query domain. The callback function of type \f[C]RTCPointQueryFunction\f[R] gets passed a number of arguments through the \f[C]RTCPointQueryFunctionArguments\f[R] structure. The \f[C]query\f[R] object is the original point query object passed into [rtcPointQuery], \f[C]usrPtr\f[R] is an arbitrary pointer to pass input into and store results of the callback function. The \f[C]primID\f[R], \f[C]geomID\f[R] and \f[C]context\f[R] (see [rtcInitPointQueryContext] for details) can be used to identify the geometry data of the primitive. .PP A \f[C]RTCPointQueryFunction\f[R] can also be passed directly as an argument to [rtcPointQuery]. In this case the callback is invoked for all primitives in the scene that intersect the query domain. If a callback function is passed as an argument to [rtcPointQuery] and (a potentially different) callback function is set for a geometry with [rtcSetGeometryPointQueryFunction] both callback functions are invoked and the callback function passed to [rtcPointQuery] will be called before the geometry specific callback function. .PP If instancing is used, the parameter \f[C]simliarityScale\f[R] indicates whether the current instance transform (top element of the stack in \f[C]context\f[R]) is a similarity transformation or not. Similarity transformations are composed of translation, rotation and uniform scaling and if a matrix M defines a similarity transformation, there is a scaling factor D such that for all x,y: dist(Mx, My) = D * dist(x, y). In this case the parameter \f[C]scalingFactor\f[R] is this scaling factor D and otherwise it is 0. A valid similarity scale (\f[C]similarityScale\f[R] > 0) allows to compute distance information in instance space and scale the distances into world space (for example, to update the query radius, see below) by dividing the instance space distance with the similarity scale. If the current instance transform is not a similarity transform (\f[C]similarityScale\f[R] is 0), the distance computation has to be performed in world space to ensure correctness. In this case the instance to world transformations given with the \f[C]context\f[R] should be used to transform the primitive data into world space. Otherwise, the query location can be transformed into instance space which can be more efficient. If there is no instance transform, the similarity scale is 1. .PP The callback function will potentially be called for primitives outside the query domain for two reasons: First, the callback is invoked for all primitives inside a BVH leaf node since no geometry data of primitives is determined internally and therefore individual primitives are not culled (only their (aggregated) bounding boxes). Second, in case non similarity transformations are used, the resulting ellipsoidal query domain (in instance space) is approximated by its axis aligned bounding box internally and therefore inner nodes that do not intersect the original domain might intersect the approximative bounding box which results in unnecessary callbacks. In any case, the callbacks are conservative, i.e.\ if a primitive is inside the query domain a callback will be invoked but the reverse is not necessarily true. .PP For efficiency, the radius of the \f[C]query\f[R] object can be decreased (in world space) inside the callback function to improve culling of geometry during BVH traversal. If the query radius was updated, the callback function should return \f[C]true\f[R] to issue an update of internal traversal information. Increasing the radius or modifying the time or position of the query results in undefined behaviour. .PP Within the callback function, it is safe to call [rtcPointQuery] again, for example when implementing instancing manually. In this case the instance transformation should be pushed onto the stack in \f[C]context\f[R]. Embree will internally compute the point query information in instance space using the top element of the stack in \f[C]context\f[R] when [rtcPointQuery] is called. .PP For a reference implementation of a closest point traversal of triangle meshes using instancing and user defined instancing see the tutorial [ClosestPoint]. .SS SEE ALSO .PP [rtcPointQuery], [rtcInitPointQueryContext]