ni.com is currently undergoing scheduled maintenance.

Some services may be unavailable at this time. Please contact us for help or try again later.

DIAdem Help

Object: 3DAdditionalBoundaryCurve

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

Object: 3DAdditionalBoundaryCurve

The 3DAdditionalBoundaryCurve object provides the properties of the boundary curve of a 3D axis system in the Characteristic diagram display mode in DIAdem REPORT.

The following example generates a 3D axis system with a characteristic diagram display with z-values at the boundary points:

VBScriptPython

 

Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMySettings, oMyShape, oMyLabel
Call Data.Root.Clear()
Call DataFileLoad(ProgramDrv & "\examples\data\engine_characteristic_map.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 oMySettings = oMy3DAxisSystem.Settings
oMySettings.RotationAngleXY = 90
oMySettings.RotationAngleZ = 270
Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeCharacteristicDiagram, "MyNew3DCurve")
Set oMyShape = oMy3DCurve.Shape
oMyShape.DataStructure = e3DDataStructureTriplet
oMyShape.XChannel.Reference = "[1]/[1]"
oMyShape.YChannel.Reference = "[1]/[2]"
oMyShape.ZChannel.Reference = "[1]/[3]"
oMyShape.Extensions.BoundaryCurve.Visible = True
oMyShape.Extensions.BoundaryPoints.Visible = True
Set oMyLabel = oMyShape.Extensions.BoundaryPoints.Label
oMyLabel.Visible = True
oMyLabel.Font.Size = 4
Call oMyLabel.Font.Color.SetPredefinedColor(eColorIndexBlue)
Call Report.Refresh()