@itwin/core-geometry 3.3.0-dev.85 → 3.3.0-dev.88
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.
- package/CHANGELOG.md +6 -1
- package/lib/cjs/polyface/PolyfaceBuilder.d.ts +1 -1
- package/lib/cjs/polyface/PolyfaceBuilder.js +2 -2
- package/lib/cjs/polyface/PolyfaceBuilder.js.map +1 -1
- package/lib/cjs/serialization/GeometrySamples.d.ts +2 -0
- package/lib/cjs/serialization/GeometrySamples.d.ts.map +1 -1
- package/lib/cjs/serialization/GeometrySamples.js +20 -0
- package/lib/cjs/serialization/GeometrySamples.js.map +1 -1
- package/lib/esm/polyface/PolyfaceBuilder.d.ts +1 -1
- package/lib/esm/polyface/PolyfaceBuilder.js +2 -2
- package/lib/esm/polyface/PolyfaceBuilder.js.map +1 -1
- package/lib/esm/serialization/GeometrySamples.d.ts +2 -0
- package/lib/esm/serialization/GeometrySamples.d.ts.map +1 -1
- package/lib/esm/serialization/GeometrySamples.js +20 -0
- package/lib/esm/serialization/GeometrySamples.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Change Log - @itwin/core-geometry
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 09 Aug 2022 15:52:41 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.2.8
|
|
6
|
+
Tue, 09 Aug 2022 15:52:41 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 3.2.7
|
|
6
11
|
Mon, 01 Aug 2022 13:36:56 GMT
|
|
@@ -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
|
*/
|
|
@@ -1696,7 +1696,7 @@ class PolyfaceBuilder extends GeometryHandler_1.NullGeometryHandler {
|
|
|
1696
1696
|
* * Circular or elliptical pipe cross sections can be specified by supplying either a radius, a pair of semi-axis lengths, or a full Arc3d.
|
|
1697
1697
|
* * For semi-axis length input, x corresponds to an ellipse local axis nominally situated parallel to the xy-plane.
|
|
1698
1698
|
* * The center of Arc3d input is translated to the centerline start point to act as initial cross section.
|
|
1699
|
-
* @param centerline centerline of pipe
|
|
1699
|
+
* @param centerline centerline of pipe. If curved, it will be stroked using the builder's StrokeOptions.
|
|
1700
1700
|
* @param sectionData circle radius, ellipse semi-axis lengths, or full Arc3d
|
|
1701
1701
|
* @param numFacetAround how many equal parameter-space chords around each section
|
|
1702
1702
|
*/
|
|
@@ -1715,7 +1715,7 @@ class PolyfaceBuilder extends GeometryHandler_1.NullGeometryHandler {
|
|
|
1715
1715
|
}
|
|
1716
1716
|
else if (centerline instanceof GeometryQuery_1.GeometryQuery) {
|
|
1717
1717
|
const linestring = LineString3d_1.LineString3d.create();
|
|
1718
|
-
centerline.emitStrokes(linestring);
|
|
1718
|
+
centerline.emitStrokes(linestring, this._options);
|
|
1719
1719
|
this.addMiteredPipesFromPoints(linestring.packedPoints, sectionData, numFacetAround);
|
|
1720
1720
|
}
|
|
1721
1721
|
}
|