hypotf.c 808 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: hypotf.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:hypotf
-----------------------------------------------------------------------------
書式:  #include <math.h>
        float   hypotf(float x, float y);
引数:  x 1辺の長さ
        y 1辺の長さ
戻り値:2辺 x と y から、直角三角形の斜辺の長さを返す。
説明:  2辺 x と y から、直角三角形の斜辺の長さを計算する。
-----------------------------------------------------------------------------
*/
#include    "math.h"

float   hypotf(float x, float y)
{
    return  _nsqrtf(x*x + y*y);
}