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_line_2pointB(
	DPNT_T pnt1,
	DPNT_T pnt2,
	ref DLINE_T line,
	ref double angle
)
Visual Basic
Public Shared Function fnFIE_cg_calc_line_2pointB ( 
	pnt1 As DPNT_T,
	pnt2 As DPNT_T,
	ByRef line As DLINE_T,
	ByRef angle As Double
) As Integer

Parameters

pnt1
Type: fvalgcli..::..DPNT_T
直線を生成する座標点P1
pnt2
Type: fvalgcli..::..DPNT_T
直線を生成する座標点P2
line
Type: fvalgcli..::..DLINE_T%
生成された直線L12
angle
Type: System..::..Double%
生成された直線の傾き(単位:ラジアン [-π/2 〜 π/2] )

Return Value

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

エラーコード:
f_err内容
F_ERR_NONE正常終了
F_ERR_INVALID_PARAM 不正なパラメータが渡された
F_ERR_CALC_IMPOSSIBLE 計算不能エラー
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_line_2pointB()
        {
            int status = (int)f_err.F_ERR_NONE;

            DPNT_T pnt1 = new DPNT_T();
            DPNT_T pnt2 = new DPNT_T();
            DLINE_T line = new DLINE_T();

            DLINE_T ans_line = DLINE_T.init(-0.8, 1, -10);

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

            status = api.fnFIE_cg_calc_line_2pointA(pnt1, pnt2, ref line);

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

            // 結果を出力する.
            ConsoleOut.WriteFunctionName(":\n");
            Console.WriteLine("line.a {0}", line.a);
            Console.WriteLine("line.b {0}", line.b);
            Console.WriteLine("line.c {0}", line.c);
            Console.Write(" ...");
            ConsoleOut.IsTrue(line.a == ans_line.a);
        }
    }
}


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_line_2pointB()
        Dim status As Integer = CInt(f_err.F_ERR_NONE)

        Dim pnt1 As New DPNT_T()
        Dim pnt2 As New DPNT_T()
        Dim line As New DLINE_T()

        Dim ans_line As DLINE_T = DLINE_T.init(-0.8, 1, -10)

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

        status = api.fnFIE_cg_calc_line_2pointA(pnt1, pnt2, line)

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

        ' 結果を出力する.
        ConsoleOut.WriteFunctionName(":" & vbLf)
        Console.WriteLine("line.a {0}", line.a)
        Console.WriteLine("line.b {0}", line.b)
        Console.WriteLine("line.c {0}", line.c)
        Console.Write(" ...")
        ConsoleOut.IsTrue(line.a = ans_line.a)
    End Sub
End Class

See Also