FacetCollection

関連する C++クラス:CFacetRefArray

導入

v1.5

詳細

Facet オブジェクトのコレクションです。PolygonMesh ファセットは PolygonFace で、NurbsSurfaceMesh ファセットは NurbsSurface です。ファセットのコレクションは、Geometry オブジェクトの Geometry.Facets プロパティからアクセスします。

このコレクションは 0 から開始されます。

メソッド

Navigate      
       

プロパティ

Countオペレータ IndexArrayオペレータ NormalArrayオペレータ SubComponentオペレータ

VBScript の例

set oRoot = ActiveProject.ActiveScene.Root

set oCube = oRoot.AddGeometry( "Cube", "MeshSurface" )

set oGeometry = oCube.ActivePrimitive.Geometry

set oFacets = oGeometry.Facets

LogMessage typename(oFacets)

for each oFacet in oFacets

	for each oSegment in oFacet.Segments 

		LogMessage "Facet.Segment.Index " & oSegment.Index 

	next

next

関連項目

Geometry.Facets