コード例 #1
0
ファイル: Vector3d.cpp プロジェクト: IsakNaslund/MasterThesis
double CIFem::Vector3d::DotProduct(Vector3d other)
{
	return _x * other.GetX() + _y * other.GetY() + _z * other.GetZ();
}