소스 검색

fixed some trigonometry shenanigans

devel
Ludovic 'Archivist' Lagouardette 4 년 전
부모
커밋
26ae913f1a
1개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. +13
    -1
      include/gp/math/fp_math.hpp

+ 13
- 1
include/gp/math/fp_math.hpp 파일 보기

@ -154,9 +154,21 @@ namespace gp{
// TODO: replace with an actual implementation
double cos(double v) {
return sin(v+pi<float>/2);
return sin(v+pi<double>/2);
}
// TODO: replace with an actual implementation
float tan(float v) {
return sin(v)/cos(v);
}
// TODO: replace with an actual implementation
double tan(double v) {
return sin(v)/cos(v);
}
template<size_t cycles = 5>
float isqrt(float v) {
int32_t i;

불러오는 중...
취소
저장