Click or drag to resize

MeshEditManagerCreateBodyPrimitivePyramid Method

Body 노드 생성 - Primitive Pyramid

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public int CreateBodyPrimitivePyramid(
	int nodeIndex,
	string name,
	SizeF bottom,
	SizeF top,
	SizeF offset,
	float height,
	Matrix3D matrix,
	Color color,
	int systemType = 1
)

Parameters

nodeIndex
Type: SystemInt32
부모 노드 인덱스
name
Type: SystemString
생성할 노드의 이름
bottom
Type: System.DrawingSizeF
Size Of Bottom
top
Type: System.DrawingSizeF
Size Of Top
offset
Type: System.DrawingSizeF
Size Of Offset
height
Type: SystemSingle
Height
matrix
Type: VIZCore3D.NET.DataMatrix3D
Matrix
color
Type: System.DrawingColor
Color
systemType (Optional)
Type: SystemInt32
System Type : 0(TRIBON), 1(AVEVA MARINE : Default)

Return Value

Type: Int32
생성된 노드(BODY) 아이디
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    // New Empty Model
    int index = vizcore3d.Model.NewEmptyModel("MODEL");

    string assemblyName = "ASSEMBLY";
    VIZCore3D.NET.Data.Node assemblyNode =
        vizcore3d.Structure.CreateNode(
            index                                   /* Parent Node Index */
            , VIZCore3D.NET.Data.NodeKind.ASSEMBLY  /* Node Kind */
            , assemblyName                          /* Node Name */
            );

    string partName = "PART";
    VIZCore3D.NET.Data.Node partNode =
        vizcore3d.Structure.CreateNode(
            assemblyNode.Index                      /* Parent Node Index */
            , VIZCore3D.NET.Data.NodeKind.PART      /* Node Kind */
            , partName                              /* Node Name */
            );

    string bodyName = "BODY";

    SizeF bottom = new SizeF(30, 40);
    SizeF top = new SizeF(10, 20);
    SizeF offset = new SizeF(2.5f, 4.5f);

    float height = 50;

    VIZCore3D.NET.Data.Matrix3D matrix = new VIZCore3D.NET.Data.Matrix3D();
    matrix.Identity();
    //matrix.SetRotateX(vizcore3d.View.DegreesToRadians(45.0f));
    //matrix.SetTranslate(1000, 0, 0, false);

    int bodyId = vizcore3d.MeshEdit.CreateBodyPrimitivePyramid(
            partNode.Index      /* Parent Node Index */
            , bodyName          /* Node Name */
            , bottom            /* Bottom Of Size */
            , top               /* Top Of Size */
            , offset            /* Offset Of Size */
            , height            /* Height */
            , matrix            /* Matrix */
            , Color.Green       /* Color */
            , 1                 /* System Type */
            );
}
See Also