ArcGIS Pro 2.9 API Reference Guide
QueryNormal(Segment,SegmentExtension,Double,AsRatioOrLength,Double) Method
Example 

ArcGIS.Core.Geometry Namespace > IGeometryEngine Interface > QueryNormal Method : QueryNormal(Segment,SegmentExtension,Double,AsRatioOrLength,Double) Method
The segment to which the tangent line is constructed.
Specifies the extension method that determines the direction and position of the tangent line.
Specifies the distance along the segment from which the tangent line and normal line are constructed.
Determines whether the distanceAlongCurve is returned as a ratio of the segment length or as length from the start point.
Specifies the length of the returned normal line.
Constructs a line normal to a segment from a point at a specified distance along the segment.
Syntax

Parameters

segment
The segment to which the tangent line is constructed.
extension
Specifies the extension method that determines the direction and position of the tangent line.
distanceAlongCurve
Specifies the distance along the segment from which the tangent line and normal line are constructed.
asRatioOrLength
Determines whether the distanceAlongCurve is returned as a ratio of the segment length or as length from the start point.
normalLength
Specifies the length of the returned normal line.

Return Value

LineSegment representing the normal line.
Exceptions
ExceptionDescription
segmentis null.
Spatial reference of segmentis an image coordinate system.
Remarks
A normal line at a point on a curve is perpendicular to the tangent line at that point. The distanceAlongCurve parameter can be negative, and it can be larger than the length of the segment. The extension parameter is ignored if distanceAlongCurve is greater than zero and less than the length of the segment. For example, shown below in blue is an elliptic arc segment with its start point in green and end point in red. The orange tangent line is constructed halfway along the curve and the extension parameter is ignored. The purple line is the normal line.

QueryNormal_NoExtensionHalfway

If distanceAlongCurve is less than zero, then the tangent line is embedded in an extension from the start point of the segment. If distanceAlongCurve is greater than the length of the input segment, then the tangent line is embedded in an extension from the end point of the segment. In the following example, distanceAlongCurve = 1.2, asRatioOrLength = AsRatioOrLength.AsRatio, and extension = SegmentExtension.ExtendTangentAtTo. Note that if asRatioOrLength = AsRatioOrLength.AsRatio, then the length of the input segment is 1. The extended tangent segment is the gray dashed line and is 0.2 * length of the input segment. The constructed tangent is in orange, and the normal line is in purple.

QueryNormal_TangentAtToPositive

SegmentExtension.ExtendEmbeddedAtTo, SegmentExtension.ExtendEmbeddedAtFrom, and SegmentExtension.ExtendEmbedded when applied to an elliptic arc segment refer to the embedded ellipse or circle. Shown below in blue is an elliptic arc segment that is circular along with its embedded circle in gray.

QueryTangent_ArcWithEmbeddedCircle

Here is an example where distanceAlongCurve = 1.2, asRatioOrLength = AsRatioOrLength.AsRatio, and extension = SegmentExtension.ExtendEmbeddedAtTo.

QueryNormal_EmbeddedAtToPositive

If the input segment is not an elliptic arc segment, then SegmentExtension.ExtendEmbeddedAtTo, SegmentExtension.ExtendEmbeddedAtFrom, and SegmentExtension.ExtendEmbedded are equivalent to SegmentExtension.ExtendTangentAtTo, SegmentExtension.ExtendTangentAtFrom, and SegmentExtension.ExtendTangent respectively. There are cases when the tangent cannot be extended as specified by the extension parameter.For example, if the distanceAlongCurve is negative and extension = SegmentExtension.ExtendTangentAtTo.In this case, the tangent line is constructed at the start point of the input segment.Similarly, if the distanceAlongCurve is greater than the length of the input segment and extension = SegmentExtension.ExtendTangentAtFrom, then the tangent line is constructed at the end point of the input segment.

Example
string json = "{\"curvePaths\":[[[-13046586.8335,4036570.6796000004]," +
              "{\"c\":[[-13046645.107099999,4037152.5873000026]," +
              "[-13046132.776277589,4036932.1325614937]]}]],\"spatialReference\":{\"wkid\":3857}}";
Polyline polyline = PolylineBuilder.FromJson(json);

EllipticArcSegment arc = polyline.Parts[0][0] as EllipticArcSegment;

// No extension, distanceAlongCurve = 0.5

// use the polyline
Polyline poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.NoExtension, 0.5, AsRatioOrLength.AsRatio, 1000);
// or a segment
LineSegment seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.NoExtension, 0.5, AsRatioOrLength.AsRatio, 1000);

// TangentAtFrom, distanceAlongCurve = -1.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendTangentAtFrom, -1.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendTangentAtFrom, -1.2, AsRatioOrLength.AsRatio, 1000);

// TangentAtTo (ignored because distanceAlongCurve < 0), distanceAlongCurve = -1.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendTangentAtTo, -1.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendTangentAtTo, -1.2, AsRatioOrLength.AsRatio, 1000);

// TangentAtTo, distanceAlongCurve = 1.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendTangentAtTo, 1.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendTangentAtTo, 1.2, AsRatioOrLength.AsRatio, 1000);

// TangentAtFrom (ignored because distanceAlongCurve > 0), distanceAlongCurve = 1.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendTangentAtFrom, 1.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendTangentAtFrom, 1.2, AsRatioOrLength.AsRatio, 1000);

// EmbeddedAtTo, distanceAlongCurve = 1.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendEmbeddedAtTo, 1.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendEmbeddedAtTo, 1.2, AsRatioOrLength.AsRatio, 1000);

// EmbeddedAtFrom, distanceAlongCurve = -0.2
poly_normal = GeometryEngine.Instance.QueryNormal(polyline, SegmentExtension.ExtendEmbeddedAtFrom, -0.2, AsRatioOrLength.AsRatio, 1000);
seg_normal = GeometryEngine.Instance.QueryNormal(arc, SegmentExtension.ExtendEmbeddedAtFrom, -0.2, AsRatioOrLength.AsRatio, 1000);
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

IGeometryEngine Interface
IGeometryEngine Members
Overload List