b3dPickedNY

Returns Y component of surface normal at pick hit point from last pick operation (0.0 if no hit). Takes no parameters. Returns normal Y component (Double) from g_lastPickResult.normal.y.

3D Graphics

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Double

Quick Summary

Returns Y component of surface normal at pick hit point from last pick operation (0.0 if no hit). Takes no parameters. Returns normal Y component (Double) from g_lastPickResult.normal.y.

Technical Exegesis...

Returns Y component of surface normal at pick hit point from last pick operation (0.0 if no hit). Takes no parameters. Returns normal Y component (Double) from g_lastPickResult.normal.y. Reads result from last b3dCameraPick, b3dEntityPick, or b3dLinePick call. World-space surface normal Y component at intersection point.

This function retrieves hit normal Y. Pick sequence: (1) Call b3dCameraPick/EntityPick/LinePick to perform ray-cast, (2) Call b3dPickedNY (and NX/NZ) to get surface normal components.

Example

Example.bam
; No example implemented yet