Exemple #1
0
int main()
{
    VectorT<int> vint;
    VectorT<double> vdouble;
    
    vint.Normalize();
    vdouble.Normalize();
    
    return 0;
}