brender-v1.1.2/ZB/FRCP.C
2022-05-04 18:14:23 -07:00

22 lines
1 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved.
*
* $Id: frcp.c 1.1 1995/08/31 16:52:48 sam Exp $
* $Locker: $
*
* Floating point reciprocal table
*/
float frcp[100] = {
0.0f,1/ 1.0f,1/02.0f,1/ 3.0f,1/ 4.0f,1/ 5.0f,1/ 6.0f,1/ 7.0f,1/ 8.0f,1/ 9.0f,
1/10.0f,1/11.0f,1/12.0f,1/13.0f,1/14.0f,1/15.0f,1/16.0f,1/17.0f,1/18.0f,1/19.0f,
1/20.0f,1/21.0f,1/22.0f,1/23.0f,1/24.0f,1/25.0f,1/26.0f,1/27.0f,1/28.0f,1/29.0f,
1/30.0f,1/31.0f,1/32.0f,1/33.0f,1/34.0f,1/35.0f,1/36.0f,1/37.0f,1/38.0f,1/39.0f,
1/40.0f,1/41.0f,1/42.0f,1/43.0f,1/44.0f,1/45.0f,1/46.0f,1/47.0f,1/48.0f,1/49.0f,
1/50.0f,1/51.0f,1/52.0f,1/53.0f,1/54.0f,1/55.0f,1/56.0f,1/57.0f,1/58.0f,1/59.0f,
1/60.0f,1/61.0f,1/62.0f,1/63.0f,1/64.0f,1/65.0f,1/66.0f,1/67.0f,1/68.0f,1/69.0f,
1/70.0f,1/71.0f,1/72.0f,1/73.0f,1/74.0f,1/75.0f,1/76.0f,1/77.0f,1/78.0f,1/79.0f,
1/80.0f,1/81.0f,1/82.0f,1/83.0f,1/84.0f,1/85.0f,1/86.0f,1/87.0f,1/88.0f,1/89.0f,
1/90.0f,1/91.0f,1/92.0f,1/93.0f,1/94.0f,1/95.0f,1/96.0f,1/97.0f,1/98.0f,1/99.0f,
};