Object: 3DConstantZObject
- Updated2024-09-12
- 2 minute(s) read
(3DAxisSystem | Collections) > 3DCurves > 3DCurve > 3DCoordinate > Object: 3DConstantZObject
Object: 3DConstantZObject
The 3DConstantZObject object provides the value reference for the z-value of a coordinate in 3D axis systems in DIAdem REPORT.
The following example generates a 3D axis system with a surface display and assigns channels to this display. Then the example generates an additional coordinates display:
| VBScript | Python |
Dim oMy3DaxisSystem, oMyPos, oMy3DCurve, oMyShape, oMy3DCoord, oMyCoordShape 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]" Set oMy3DCoord = oMy3DaxisSystem.Curves3D.Add(e3DShapeCoordinate, "MyNew3DCoordinate") Set oMyCoordShape = oMy3DCoord.Shape oMyCoordShape.BoundingType = eCoordinateChannelBounded oMyCoordShape.BoundingPosition = e3DCoordinateBoundingNearestValue oMyCoordShape.BoundingXChannel.Reference = "[2]/[1]" oMyCoordShape.BoundingYChannel.Reference = "[2]/[2]" oMyCoordShape.BoundingZChannel.Reference = "[2]/[3]" oMyCoordShape.XCoordinate.Reference = 0.5 oMyCoordShape.YCoordinate.Reference = 0.5 oMyCoordShape.Extensions.CoordinateComment.Visible = True Call Report.Refresh()