Click or drag to resize

GeometryPropertyManagerFromIndex Method

지정된 개체의 지오메트리 속성을 반환

Namespace:  VIZCore3DX.NET.Manager
Assembly:  VIZCore3DX.NET (in VIZCore3DX.NET.dll) Version: 1.1.25.1217 (1.1.25.1217)
Syntax
C#
public Object3DProperty FromIndex(
	int entityID,
	int index,
	bool visibleOnly = false
)

Parameters

entityID
Type: SystemInt32
Entity ID
index
Type: SystemInt32
개체 인덱스
visibleOnly (Optional)
Type: SystemBoolean
보이는 모델만 조회 여부

Return Value

Type: Object3DProperty
지오메트리 속성
Examples
C#
// VIZCore3DX.NET Control
private VIZCore3DX.NET.VIZCore3DXControl vizcore3dx;

private void Example()
{
    Node node = vizcore3dx.Object3D.FromFilter(Object3dFilter.SELECTED_PART)[0];
    Object3DProperty property = vizcore3dx.Object3D.GeometryProperty.FromIndex(node.EntityID, node.Index);
}
See Also