loc_between

MDL Function特定のポイント間に位置する新しいポイントを計算します。

説明

新しいポイントと1つ目のポイント間の距離は以下の関係を満たします: (p_new – p_1)/(p_2-p_1) = ratio

シグネチャ

point = loc_between(first_point, end_point, dist_ratio)

入力引数

first_point
ラインの始点を定義するポイント。
end_point
ラインの終点を定義するポイント。
dist_ratio
新しいポイントを計算するために使用される距離比。

戻り値

point
要件を満たすポイント。

使用法

# Compute the point whose cooridnates is (0,3,0)
point = loc_between(
     first_point = Point(0,0,0),
     end_point = Point(0,10,0),
     dist_ratio = 0.3,
     )