Object: 3DAdditionalSurfaceIsoline
- Updated2024-09-12
- 2 minute(s) read
(3DAxisSystem | Collections) > 3DCurves > 3DCurve > 3DSurface > 3DSurfaceExtensions > Object: 3DAdditionalSurfaceIsoline
Object: 3DAdditionalSurfaceIsoline
The 3DAdditionalSurfaceIsoline object provides the curve properties of the additional isolines in 3D axis systems in the Surface display mode in DIAdem REPORT.
The following example generates a 3D axis system with a surface display and isolines. To display the isolines, the example uses the color palette with changed line properties:
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMyColoredLines, i Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Call Report.NewLayout() Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem") Set oMyPos = oMy3DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeSurface, "MyNew3DCurve") Set oMyShape = oMy3DCurve.Shape oMyShape.DataStructure = e3DDataStructureTriplet oMyShape.XChannel.Reference = "[2]/[1]" oMyShape.YChannel.Reference = "[2]/[2]" oMyShape.ZChannel.Reference = "[2]/[3]" oMyShape.Extensions.SurfaceIsoline.DisplayType = e3DIsolineCorrespondingToIsoValueAndProjected oMyShape.Extensions.SurfaceIsoline.Visible = True oMyShape.Extensions.SurfaceIsoline.Line.Color.ColorIndex = eColorIndexPalette Set oMyColoredLines = oMyShape.Settings.Palette For i = 1 to oMyColoredLines.Count oMyColoredLines(i).LineType = eLineTypeDashDot oMyColoredLines(i).Width = eLineWidth0050 Next Call Report.Refresh()