Skip to content
Snippets Groups Projects
Commit 11987ce4 authored by Wenyuan  Cui's avatar Wenyuan Cui
Browse files

Update LookupTables.java

parent 6b58b71f
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ public class LookupTables {
public static void init(){
//产生一个用于快速获得三角函数值的查找表
//produce a lookup table for fast trigonometric functions calculation
sin = new float[361];
cos = new float[361];
for(int i = 0; i < 361; i ++){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment