state.flowRate.x=flowScaleFactorX*integralToRate*float(report.pixel_flow_x_integral);// rad/sec measured optically about the X sensor axis
state.flowRate.y=flowScaleFactorY*integralToRate*float(report.pixel_flow_y_integral);// rad/sec measured optically about the Y sensor axis
state.bodyRate.x=integralToRate*float(report.gyro_x_rate_integral);// rad/sec measured inertially about the X sensor axis
state.bodyRate.y=integralToRate*float(report.gyro_y_rate_integral);// rad/sec measured inertially about the Y sensor axis
// rotate sensor measurements from sensor to body frame through sensor yaw angle
state.flowRate.x=flowScaleFactorX*integralToRate*(cosYaw*float(report.pixel_flow_x_integral)-sinYaw*float(report.pixel_flow_y_integral));// rad/sec measured optically about the X body axis
state.flowRate.y=flowScaleFactorY*integralToRate*(sinYaw*float(report.pixel_flow_x_integral)+cosYaw*float(report.pixel_flow_y_integral));// rad/sec measured optically about the Y body axis
state.bodyRate.x=integralToRate*(cosYaw*float(report.gyro_x_rate_integral)-sinYaw*float(report.gyro_y_rate_integral));// rad/sec measured inertially about the X body axis
state.bodyRate.y=integralToRate*(sinYaw*float(report.gyro_x_rate_integral)+cosYaw*float(report.gyro_y_rate_integral));// rad/sec measured inertially about the Y body axis
// @Description: Specifies the number of centi-degrees that the flow sensor is yawed relative to the vehicle. A sensor with its X-axis pointing to the right of the vehicle X axis has a positive yaw angle.