DIAdem Help

Object: 3DAxisSystem

  • Updated2024-09-12
  • 1 minute(s) read

Object: 3DAxisSystem

The 3DAxisSystem object provides a 3D axis system in DIAdem REPORT.

The following example generates a 3D axis system with a surface:

VBScriptPython

 

Dim oMy3DAxisSystem, oMy3DCurve
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","")
Call Report.NewLayout()
Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem")
Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeSurface, "MyNew3DCurve")
oMy3DCurve.Shape.XChannel.Reference = "[2]/[1]"
oMy3DCurve.Shape.YChannel.Reference = "[2]/[2]"
oMy3DCurve.Shape.ZChannel.Reference = "[2]/[3]"
oMy3DCurve.Shape.DataStructure = e3DDataStructureMatrix
Call Report.Refresh()

Log in to get a better experience