Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
496 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef ANORMS_H
  7. #define ANORMS_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "mathlib/vector.h"
  12. #define NUMVERTEXNORMALS 162
  13. // the angle between consecutive g_anorms[] vectors is ~14.55 degrees
  14. #define VERTEXNORMAL_CONE_INNER_ANGLE DEG2RAD(7.275)
  15. extern Vector g_anorms[NUMVERTEXNORMALS];
  16. #endif // ANORMS_H