Skip to main content

Appendixes

Here you will find additional information about the RxSDK objects and their usage.

Appendix A: Return Values

The COM objects expose one or more interfaces, and all methods defined by these interfaces return an HRESULT status value to inform the client about the success or failure of the requested operation.

Currently, the RxSDK objects return the following standard HRESULT values:

NameDescriptionValue
S_OKOperation successful0x00000000
S_FALSEOperation successful, but may have been void0x00000001
E_UNEXPECTEDUnexpected failure0x8000FFFF
E_NOTIMPLNot implemented0x80004001
E_OUTOFMEMORYFailed to allocate necessary memory0x8007000E
E_INVALIDARGOne or more arguments are invalid0x80070057
E_NOINTERFACENo such interface supported0x80004002
E_POINTERInvalid pointer0x80004003
E_HANDLEInvalid handle0x80070006
E_ABORTOperation aborted0x80004004
E_FAILUnspecified failure0x80004005
E_ACCESSDENIEDGeneral access denied error0x80070005

More information about these values can be found in the Microsoft Platform SDK or at http://msdn.microsoft.com.


Appendix B: Clipping Planes

The RxDisplay3D object supports full control of 3D clipping against six arbitrary planes. Each plane can be enabled, disabled, or visualized independently. When visualized, a plane extends to the model's extent and is defined in model coordinates.

A general plane equation is given by:

A * (x - x1) + B * (y - y1) + C * (z - z1) = 0

Where (x1, y1, z1) is a point on the plane. Rearranging this equation:

A * x + B * y + C * z + D = 0

Where D = -(A * x1 + B * y1 + C * z1).

Given three points in 3D space ([x1, y1, z1], [x2, y2, z2], [x3, y3, z3]), a plane containing all three points can be defined as follows:

A = (x1 - x2) * (z2 - z3) - (x2 - x3) * (z1 - z2)
---------------------------------------------
(y2 - y3) * (z1 - z2) - (y1 - y2) * (z2 - z3)

B = (x1 - x2) * (y2 - y3) - (x2 - x3) * (y1 - y2)
---------------------------------------------
(z2 - z3) * (y1 - y2) - (z1 - z2) * (y2 - y3)

C = 1.0

D = -(A * x1 + B * y1 + C * z1)

All points with eye coordinates (xe, ye, ze, we) that satisfy (A B C D) x M⁻¹ x (xe ye ze we)ᵀ >= 0, where M is the current model view matrix, lie in the half-space defined by the plane. Points not in this half-space are clipped away. To invert a plane (clip on the opposite side), change the sign of all coefficients (A, B, C, D).