Object: 3DPointsExtensions
- Updated2024-09-12
- 2 minute(s) read
(3DAxisSystem | Collections) > 3DCurves > 3DCurve > 3DPoints > Object: 3DPointsExtensions
Object: 3DPointsExtensions
The 3DPointsExtensions object provides the extended curve properties of a 3D axis system in the Points display mode in DIAdem REPORT.
The following example generates a 3D axis system with a surface display and a points display, and displays the z-values in the curve labels:
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMy3DSurface, oMySurfaceShape, oMyShape, oMySettings, oMyLabel 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 oMy3DSurface = oMy3DAxisSystem.Curves3D.Add(e3DShapeSurface, "MyNew3DSurface") Set oMySurfaceShape = oMy3DSurface.Shape oMySurfaceShape.DataStructure = e3DDataStructureMatrix oMySurfaceShape.XChannel.Reference = "[2]/[1]" oMySurfaceShape.YChannel.Reference = "[2]/[2]" oMySurfaceShape.ZChannel.Reference = "[2]/[3]" Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapePoints, "MyNew3DCurve") Set oMyShape = oMy3DCurve.Shape oMyShape.DataStructure = e3DDataStructureMatrix oMyShape.XChannel.Reference = "[2]/[1]" oMyShape.YChannel.Reference = "[2]/[2]" oMyShape.ZChannel.Reference = "[2]/[3]" Set oMySettings = oMyShape.Settings oMyShape.Settings.Marker.Type = eMarkerAsterisk Set oMyLabel = oMyShape.Extensions.Label oMyLabel.Visible = True oMyLabel.ZValueVisible = True oMyLabel.ZValueFormat = "d.ddde" oMyLabel.Repetition.Mode = e3DLabelRepetitionNthPoint oMyLabel.Repetition.NValue = 6 oMyLabel.Position.Type = e3DLabelPositionAtPoint Call oMyLabel.Font.Color.SetPredefinedColor(eColorIndexBlue) Call Report.Refresh()