| 1947 | |
| 1948 | extern void CG_TestLine( vec3_t start, vec3_t end, int time, unsigned int color, int radius); |
| 1949 | void G_DebugLine(vec3_t A, vec3_t B, int duration, int color, qboolean deleteornot) |
| 1950 | { |
| 1951 | /* |
| 1952 | gentity_t *tent = G_TempEntity( A, EV_DEBUG_LINE ); |
| 1953 | VectorCopy(B, tent->s.origin2 ); |
| 1954 | tent->s.time = duration; // Pause |
| 1955 | tent->s.time2 = color; // Color |
| 1956 | tent->s.weapon = 1; // Dimater |
| 1957 | tent->freeAfterEvent = deleteornot; |
| 1958 | */ |
| 1959 | |
| 1960 | CG_TestLine( A, B, duration, color, 1 ); |
| 1961 | } |
| 1962 | |
| 1963 | qboolean G_ExpandPointToBBox( vec3_t point, const vec3_t mins, const vec3_t maxs, int ignore, int clipmask ) |
| 1964 | { |
no test coverage detected