2点の中点座標の算出

Namespace: fvalgcli
Assembly: fvalgcli (in fvalgcli.dll) Version: 3.1.0.0 (3.1.0.11)

Syntax

C#
public static int fnFIE_cg_calc_center_2pointA(
	DPNT_T pnt1,
	DPNT_T pnt2,
	ref DPNT_T center
)
Visual Basic
Public Shared Function fnFIE_cg_calc_center_2pointA ( 
	pnt1 As DPNT_T,
	pnt2 As DPNT_T,
	ByRef center As DPNT_T
) As Integer

Parameters

pnt1
Type: fvalgcli..::..DPNT_T
座標点P1
pnt2
Type: fvalgcli..::..DPNT_T
座標点P2
center
Type: fvalgcli..::..DPNT_T%
中点座標Pc

Return Value

Type: Int32
以下のエラーコードを返します。

エラーコード:
f_err内容
F_ERR_NONE正常終了
F_ERR_INVALID_PARAM 不正なパラメータが渡された
F_ERR_NO_LICENCEライセンスエラー、または未初期化エラー

Remarks

Examples

C# Copy imageCopy
//    $Revision: 1.1 $

using System;
using System.Collections.Generic;
using System.Text;
using fvalgcli;

namespace TC
{
    public partial class FIE
    {
        [FvPluginExecute]
        public void fnFIE_cg_calc_center_2pointA()
        {
            int status = (int)f_err.F_ERR_NONE;

            DPNT_T pnt1 = new DPNT_T();
            DPNT_T pnt2 = new DPNT_T();
            DPNT_T center = new DPNT_T();

            DPNT_T ans_center = DPNT_T.init(175, 150);

            // 座標の設定.
            pnt1.x = 50;
            pnt1.y = 50;
            pnt2.x = 300;
            pnt2.y = 250;

            status = api.fnFIE_cg_calc_center_2pointA(pnt1,pnt2, ref center);

            Assert.IsTrue(status == (int)f_err.F_ERR_NONE, "エラーが発生しました。({0})", (f_err)status);

            // 結果を出力する.
            ConsoleOut.WriteFunctionName(":\n");
            Console.WriteLine("center = ({0},{1})", center.x, center.y);
            Console.Write(" ...");
            ConsoleOut.IsTrue(center.x == ans_center.x && center.y == ans_center.y);
        }
    }
}


Visual Basic Copy imageCopy
'    $Revision: 1.1 $

Imports System.Collections.Generic
Imports System.Text
Imports fvalgcli

Public Partial Class FIE
    <FvPluginExecute> _
    Public Sub fnFIE_cg_calc_center_2pointA()
        Dim status As Integer = CInt(f_err.F_ERR_NONE)

        Dim pnt1 As New DPNT_T()
        Dim pnt2 As New DPNT_T()
        Dim center As New DPNT_T()

        Dim ans_center As DPNT_T = DPNT_T.init(175, 150)

        ' 座標の設定.
        pnt1.x = 50
        pnt1.y = 50
        pnt2.x = 300
        pnt2.y = 250

        status = api.fnFIE_cg_calc_center_2pointA(pnt1, pnt2, center)

        Assert.IsTrue(status = CInt(f_err.F_ERR_NONE), "エラーが発生しました。({0})", CType(status, f_err))

        ' 結果を出力する.
        ConsoleOut.WriteFunctionName(":" & vbLf)
        Console.WriteLine("center = ({0},{1})", center.x, center.y)
        Console.Write(" ...")
        ConsoleOut.IsTrue(center.x = ans_center.x AndAlso center.y = ans_center.y)
    End Sub
End Class

See Also