コード例 #1
0
ファイル: Misc.cpp プロジェクト: Sophiealex/jgt-code
void	Arrow( const VectorR3& tail, const VectorR3& head )
{
	float t[3];
	float h[3];
	tail.Dump( t );
	head.Dump( h );
	Arrow( t, h );
}