コード例 #1
0
ファイル: Polygon.cpp プロジェクト: chengzg/MathGeoLib
Plane Polygon::PlaneCW() const
{
	Plane plane = PlaneCCW();
	plane.ReverseNormal();
	return plane;
}