NurbsCurve.EvaluatePosition operator

説明

指定されたU値における、位置、U方向のタンジェント、法線、および従法線を含む3D ベクトルを戻します。

スクリプト 構文

oArray = NurbsCurve.EvaluatePosition( UValue );

戻り値

位置、タンジェント、法線、および従法線を含む1DArrayを戻します。

パラメータ

パラメータ タイプ 詳細
UValue Double カーブを評価する場所の U値

1. VBScript の例

set oRoot = Application.ActiveProject.ActiveScene.Root
set oArc = oRoot.AddGeometry( "Arc", "NurbsCurve" )
aValues = oArc.ActivePrimitive.Geometry.Curves(0).EvaluatePosition( 3.0 )
set oPosition = aValues(0)
logmessage "The position at 3.0 is x :" &  oPosition.x      & " y: " _
        & oPosition.y & " z: " & oPosition.z
set oUTangent = aValues(1)
logmessage "The tangent in U at 3.0 is x :" & oUTangent.x & " y: " _
        & oUTangent.y & " z: " & oUTangent.z
set oNormal = aValues(2)
logmessage "The normal at 3.0 is x :" & oNormal.x & " y: " & oNormal.y _
        & " z: " & oNormal.z
set oBiNormal = aValues(3)
logmessage "The bi-normal at 3.0 is x :" & oBiNormal.x & " y: " _
        & oBiNormal.y & " z: " & oBiNormal.z
' Expected result:
'INFO : The position at 3.0 is x :1.16113870901785 y: 3.82776134292884 z: 0
'INFO : The tangent in U at 3.0 is x :0.956940009306386 y: -0.290285753334009 z: 0
'INFO : The normal at 3.0 is x :-0.290285753334009 y: -0.956940009306387 z: 0
'INFO : The bi-normal at 3.0 is x :0 y: 0 z: -1

2. JScript の例

/*
        See also the JScript example for NurbsCurveList.GetClosestCurvePosition2 which demonstrates
        how to use NurbsCurveList.GetClosestCurvePosition2 and NurbsCurve.EvaluatePosition as an
        (object model) alternative to the EvaluateCurveAt command.
*/

関連項目

NurbsCurveList.GetClosestCurvePosition2 EvaluateCurveAt