Skip to content
Snippets Groups Projects
Commit 10fc2e17 authored by 최형택's avatar 최형택 :dart:
Browse files

Edit sine table indentations

parent 95b2d48c
Branches
No related tags found
No related merge requests found
......@@ -352,17 +352,17 @@ angle 이 0도부터 90도까지인 경우, sin 값을 fx_s1516으로 표현한
불필요한 연산을 줄이고자 아래와 같은 SinTable을 사용하게 되었다.
```
const static fx_s1615 fx_1615_SinTable[91] = { 0, 571, 1143, 1714, 2285, 2855,
3425, 3993, 4560, 5126, 5690, 6252, 6812, 7371, 7927, 8480, 9032,
9580, 10125, 10668, 11207, 11743, 12275, 12803, 13327, 13848,
14364, 14876, 15383, 15886, 16384, 16876, 17364, 17846, 18323,
18794, 19260, 19720, 20173, 20621, 21062, 21497, 21926, 22347,
22762, 23170, 23571, 23964, 24351, 24730, 25101, 25465, 25821,
26169, 26509, 26841, 27165, 27481, 27788, 28087, 28377, 28659,
28932, 29196, 29451, 29697, 29935, 30163, 30381, 30591, 30791,
30982, 31164, 31336, 31498, 31651, 31794, 31928, 32051, 32165,
32270, 32364, 32449, 32523, 32588, 32643, 32688, 32723, 32748,
32763, 32768
const static fx_s1615 fx_1615_SinTable[91] = {
0, 571, 1143, 1714, 2285, 2855, 3425, 3993, 4560, 5126,
5690, 6252, 6812, 7371, 7927, 8480, 9032, 9580, 10125, 10668,
11207, 11743, 12275, 12803, 13327, 13848, 14364, 14876, 15383, 15886,
16384, 16876, 17364, 17846, 18323, 18794, 19260, 19720, 20173, 20621,
21062, 21497, 21926, 22347, 22762, 23170, 23571, 23964, 24351, 24730,
25101, 25465, 25821, 26169, 26509, 26841, 27165, 27481, 27788, 28087,
28377, 28659, 28932, 29196, 29451, 29697, 29935, 30163, 30381, 30591,
30791, 30982, 31164, 31336, 31498, 31651, 31794, 31928, 32051, 32165,
32270, 32364, 32449, 32523, 32588, 32643, 32688, 32723, 32748, 32763,
32768
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment