@itwin/core-geometry 3.3.0-dev.86 → 3.3.0-dev.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -427,7 +427,7 @@ export declare class PolyfaceBuilder extends NullGeometryHandler {
427
427
  * * Circular or elliptical pipe cross sections can be specified by supplying either a radius, a pair of semi-axis lengths, or a full Arc3d.
428
428
  * * For semi-axis length input, x corresponds to an ellipse local axis nominally situated parallel to the xy-plane.
429
429
  * * The center of Arc3d input is translated to the centerline start point to act as initial cross section.
430
- * @param centerline centerline of pipe
430
+ * @param centerline centerline of pipe. If curved, it will be stroked using the builder's StrokeOptions.
431
431
  * @param sectionData circle radius, ellipse semi-axis lengths, or full Arc3d
432
432
  * @param numFacetAround how many equal parameter-space chords around each section
433
433
  */
@@ -1693,7 +1693,7 @@ export class PolyfaceBuilder extends NullGeometryHandler {
1693
1693
  * * Circular or elliptical pipe cross sections can be specified by supplying either a radius, a pair of semi-axis lengths, or a full Arc3d.
1694
1694
  * * For semi-axis length input, x corresponds to an ellipse local axis nominally situated parallel to the xy-plane.
1695
1695
  * * The center of Arc3d input is translated to the centerline start point to act as initial cross section.
1696
- * @param centerline centerline of pipe
1696
+ * @param centerline centerline of pipe. If curved, it will be stroked using the builder's StrokeOptions.
1697
1697
  * @param sectionData circle radius, ellipse semi-axis lengths, or full Arc3d
1698
1698
  * @param numFacetAround how many equal parameter-space chords around each section
1699
1699
  */
@@ -1712,7 +1712,7 @@ export class PolyfaceBuilder extends NullGeometryHandler {
1712
1712
  }
1713
1713
  else if (centerline instanceof GeometryQuery) {
1714
1714
  const linestring = LineString3d.create();
1715
- centerline.emitStrokes(linestring);
1715
+ centerline.emitStrokes(linestring, this._options);
1716
1716
  this.addMiteredPipesFromPoints(linestring.packedPoints, sectionData, numFacetAround);
1717
1717
  }
1718
1718
  }