mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
26 lines
585 B
C
26 lines
585 B
C
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
||
|
|
||
|
/*
|
||
|
======================================================================
|
||
|
vecmat.h
|
||
|
|
||
|
Basic vector and matrix functions.
|
||
|
====================================================================== */
|
||
|
|
||
|
#include <lwtypes.h>
|
||
|
|
||
|
#define vecangle(a,b) (float)acos(dot(a,b)) /* a and b must be unit vectors */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif //__cplusplus
|
||
|
|
||
|
|
||
|
float dot( LWFVector a, LWFVector b );
|
||
|
void cross( LWFVector a, LWFVector b, LWFVector c );
|
||
|
void normalize( LWFVector v );
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif //__cplusplus
|