コード例 #1
0
ファイル: collider.cpp プロジェクト: Ryokin/CodeStudies
bool SphereCollider::Fits( const BoxCollider &other ) const
{
	return other.Fits(*this);
}
コード例 #2
0
ファイル: collider.cpp プロジェクト: Ryokin/CodeStudies
bool CylinderCollider::Fits( const BoxCollider &other ) const
{
	return other.Fits(*this);
}