gs-cae-design 1.1.63 → 1.1.64
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/README.md +11 -0
- package/lib/.gz +0 -0
- package/lib/CAEDesign.common-report.html +2 -2
- package/lib/CAEDesign.common.js +20 -20
- package/lib/CAEDesign.umd-report.html +2 -2
- package/lib/CAEDesign.umd.js +20 -20
- package/lib/CAEDesign.umd.min-report.html +2 -2
- package/lib/CAEDesign.umd.min.js +20 -20
- package/package.json +1 -1
- package/src/gsDevFx/managers/caeRenderObjectTreeManager.ts +16 -12
- package/src/gsDevFx/managers/interfaceManagers/postInterfaceManager.ts +175 -171
- package/src/gsDevFx/managers/interfaceManagers/selectionInterfaceManager.ts +58 -38
- package/src/gsDevFx/objects/caeObjects/memberObject.ts +55 -19
- package/src/gsDevFx/objects/caeObjects/sections/tubSectionObject.ts +4 -0
- package/src/gsDevFx/objects/pretreatmentObjects/colorDivGrupThicknessObject.ts +1 -1
- package/src/viewerWrapper/commands/pretreatment/colorDivideByGrupThickness/colorDivideByGrupThicknessConfig.ts +1 -1
|
@@ -236,6 +236,10 @@ export class TubSectionObject
|
|
|
236
236
|
radius3 = R2 / 2;
|
|
237
237
|
radius4 = R2 / 2 - D2;
|
|
238
238
|
|
|
239
|
+
if(radius2 <= radius3) {
|
|
240
|
+
radius2 = radius3 * 1.01;
|
|
241
|
+
}
|
|
242
|
+
|
|
239
243
|
// 内圆的三个点 外上 外下 内上
|
|
240
244
|
let point4 = Longan.Vector.multiply(zAxis, radius3);
|
|
241
245
|
let point5 = Longan.Vector.multiply(zAxis, -radius3);
|
|
@@ -55,7 +55,7 @@ export default class ColorDivideByGrupThicknessConfig extends Config {
|
|
|
55
55
|
}
|
|
56
56
|
} else if (
|
|
57
57
|
grupSeg.section &&
|
|
58
|
-
grupSeg.section.crossSectionType === "
|
|
58
|
+
grupSeg.section.crossSectionType === "TUB"
|
|
59
59
|
) {
|
|
60
60
|
let thickness = (
|
|
61
61
|
grupSeg.section as TubSectionObject
|