| Syntax C/C++ | #include <VFmath.h>
int VF_cos( fVector Y, fVector X, ui size );
int VFx_cos( fVector Y, fVector X, ui size, float A, float B, float C );
int VFr_cos( fVector Y, fVector X, ui size );
int VFrx_cos( fVector Y, fVector X, ui size, float A, float B, float C ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::cos( const vector<T>& X );
int vector<T>::x_cos( const vector<T>& X, const T& A, const T& B, const T& C );
int vector<T>::r_cos( const vector<T>& X );
int vector<T>::rx_cos( const vector<T>& X, const T& A, const T& B, const T& C ); |
| Pascal/Delphi | uses VFmath;
function VF_cos( Y, X:fVector; size:UInt ): IntBool;
function VFx_cos( Y, X:fVector; size:UInt; A, B, C:Single ): IntBool;
function VFr_cos( Y, X:fVector; size:UInt ): IntBool;
function VFrx_cos( Y, X:fVector; size:UInt; A, B, C:Single ): IntBool; |
|