소스 검색

Remove finished TODO

rexim 2 년 전
부모
커밋
99d6954ccc
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      tools/obj2c.c

+ 0 - 3
tools/obj2c.c

@@ -146,9 +146,6 @@ void generate_code(FILE *out, Vertices vertices, Faces faces)
     fprintf(out, "#endif // OBJ_H_\n");
 }
 
-// TODO: do not remap any coordinates.
-// The Cup 3D demo should just properly scale and place the object in the scene instead.
-// Otherwise we end up with distorted model.
 Vector3 remap_object(Vector3 v, float lx, float hx, float ly, float hy, float lz, float hz)
 {
     float cx = lx + (hx - lx)/2;