Struct Plane
A plane in 3d space described by 4 components A, B, C and D. In ARR, planes are defined in standard normal form, which means a 3d position (x,y,z) is on the plane when it satisfies Ax + By + C*z + D = 0.
struct Microsoft::Azure::RemoteRendering::Plane
Fields
A
float A{};
B
float B{};
C
float C{};
D
float D{};