判断已知点是否在已知线段(直线)上,点在线上返回 true, 否则返回 false。
命名空间:
SuperMap.Data程序集: SuperMap.Data (in SuperMap.Data)
版本: dll
语法
C# |
---|
public static bool IsPointOnLine( Point2D point, Point2D startPoint, Point2D endPoint, bool isExtended ) |
参数
- point
- Type: SuperMap.Data..::.Point2D
已知点。
- startPoint
- Type: SuperMap.Data..::.Point2D
已知线段的起点。
- endPoint
- Type: SuperMap.Data..::.Point2D
已知线段的终点。
- isExtended
- Type: System..::.Boolean
是否将线段进行延长计算,如果 isExtended = true,就按直线计算,否则按线段计算。