Object: 3DCharacteristicDiagramSecondDiagram
- Updated2024-09-12
- 1 minute(s) read
(3DAxisSystem | Collections) > 3DCurves > 3DCurve > 3DCharacteristicDiagram > Object: 3DCharacteristicDiagramSecondDiagram
Object: 3DCharacteristicDiagramSecondDiagram
The 3DCharacteristicDiagramSecondDiagram object provides the properties of the curve parameters of the differential characteristic diagram in a 3D axis system in the Characteristic diagram display mode in DIAdem REPORT.
The following example generates a 3D axis system with a differential characteristic diagram:
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMySecondDiagram 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(e3DShapeCharacteristicDiagram, "MyNew3DCurve") Set oMyShape = oMy3DCurve.Shape oMyShape.Type = e3DCharacteristicDifferential oMyShape.DifferentialType = e3DCharacteristicDifferentialRelative oMyShape.XChannel.Reference = "[2]/[1]" oMyShape.YChannel.Reference = "[2]/[2]" oMyShape.ZChannel.Reference = "[2]/[3]" oMyShape.DataStructure = e3DDataStructureMatrix Set oMySecondDiagram = oMyShape.SecondDiagram oMySecondDiagram.XChannel.Reference = "[3]/[1]" oMySecondDiagram.YChannel.Reference = "[3]/[2]" oMySecondDiagram.ZChannel.Reference = "[3]/[3]" oMySecondDiagram.DataStructure = e3DDataStructureTriplet Call Report.Refresh()