Geometry0D

Object Hierarchy

導入

v1.0

詳細

このオブジェクトは廃止されたオブジェクトであり、Point オブジェクトに置き換えられています。3d オブジェクトの 0D ジオメトリ(ポイント)です。0Dジオメトリには、Geometry_V1からアクセスできます。

メソッド

AverageLocalReferenceFrame AverageNormal AveragePosition LocalReferenceFrame
Normal Position    
       

プロパティ

Neighborhood0D Neighborhood1D Neighborhood2D Neighbors0D
Neighbors1D Neighbors2D Type  
       

VBScript の例

' this example illustrates how to access the points of the grid polygon mesh.

set oRoot = ActiveProject.ActiveScene.Root

set oGrid = oRoot.AddGeometry( "Grid", "MeshSurface")

set oGeometryV1 = oGrid.ActivePrimitive.Obj

set oGeometry0D = oGeometryV1.Geometry0D

set oCompPos  = XSIMath.CreateVector3()

' for each 0D Component

for iCompIdx = 0 to oGeometryV1.Nb0D - 1

	oGeometry0D.Position iCompIdx, oCompPos  

	LogMessage oCompPos.x & ", " & oCompPos.y & ", " & oCompPos.z 

next

関連項目

Geometry_V1 Geometry1D Geometry2D