Skip to main content

Closest Point On Cone Surface(圆锥表面最近点)

Closest Point On Cone Surface(圆锥表面最近点)

Closest Point On Cone Surface(圆锥表面最近点)节点接收圆锥参数(大小和旋转)以及一个待检查的点,然后返回该圆锥表面上的最近点,并指示该点是否位于圆锥的定义参数内。

image.png

输入 (Inputs)

名称 (Name) 描述 (Description)
ConeCenter (float3) 圆锥的中心(位于圆锥底面的中心)。
ConeOrientation (floatQ) 圆锥的旋转。
ConeHeight (float) 圆锥的高度。
ConeBaseRadius (float) 圆锥底面的半径。
Point (float3) 我们正在检查的点。

输出 (Outputs)

名称 (Name) 描述 (Description)
ClosestPoint (float3) 返回圆锥表面上与给定点最近的点。
IsPointInside (bool) 返回该点是否位于圆锥内部。