跳到主要内容

KCurveSurfaceIntersectRet 接口

export interface KCurveSurfaceIntersectRet 

曲线与面的位置关系计算结果。

Curve and surface position relation check result.

属性

curve

curve?: KCurve3d;

如果KCurveSurfaceIntersectType的类型是曲线,那么curve属性就是交线,否则该属性未定义。

If KCurveSurfaceIntersectType is equal to KCurveSurfaceIntersectType.Curve, the curve is the intersection curve, otherwise undefined.

类型: KCurve3d

intersectType

intersectType: KCurveSurfaceIntersectType;

曲线与面的关系类型。

The curve and surface intersection type.

类型: KCurveSurfaceIntersectType

point

point?: KPoint3d;

如果KCurveSurfaceIntersectType的类型是点,那么point属性就是交点,否则该属性未定义。

If KCurveSurfaceIntersectType is equal to KCurveSurfaceIntersectType.Point, the point is the intersection point, otherwise undefined.

类型: KPoint3d