/** * Deterministic fixed-point quaternion interpolation for the paper experiments. * * Input preconditions: quaternion components are normalized Q14 values in * [-16384, 16384], and t_q15 is in [0, 32768] (clamped defensively). The output * buffer must contain at least one vec4 per input case. Integer semantics * are intentional: an f32 approximation can vary with adapter rounding and * contraction, while WGSL specifies the bounded integer operations used here. * Actual adapter agreement is still an empirical receipt gate. */ export declare const QUATERNION_INTERPOLATION_CONTRACT_VERSION: "paper6-q14-cordic-slerp-v1"; export declare const QUATERNION_INTERPOLATION_KERNEL_NAME: "quaternion_slerp_q14"; export declare const QUATERNION_INTERPOLATION_WORKGROUP_SIZE: 64; export declare const QUATERNION_INTERPOLATION_WGSL: string; //# sourceMappingURL=QuaternionInterpolationWGSL.d.ts.map