DIAdem Help

Collection: FieldsOfView

  • Mise à jour2024-09-12
  • Temps de lecture : 2 minute(s)

Collection: FieldsOfView

Collection of FieldOfView objects in the bird's eye view display in DIAdem VIEW.

The following example adds a sensor field of view to a bird's eye view display and outputs the channel properties:

VBScriptPython

 

Dim oMySheet, oMyObject, oMyObjects
Set oMySheet = View.Sheets.Add("NewBirdsEyeView")
oMySheet.ActiveArea.DisplayObjType = "BirdsEyeView"
Set oMyObjects = View.ActiveSheet.ActiveArea.DisplayObj.FieldsOfView
Set oMyObject = oMyObjects.Add(0, 0, 0, 50, 50, 50)
Call LogfileWrite("Lateral Distance: " & Str(oMyObject.LateralDistance) & VBCrLf & "Longitudinal Distance: " & Str(oMyObject.LongitudinalDistance) & VBCrLf & _
                  "Orientation Angle: " & Str(oMyObject.OrientationAngle) & VBCrLf & "Aperture Angle: " & Str(oMyObject.ApertureAngle) & VBCrLf & _
                  "Radius: " & Str(oMyObject.Radius) & VBCrLf & "Fill Transparency: " & Str(oMyObject.FillTransparency)

Properties

Count

Methods

Add | Exists | Item | Remove | RemoveAll

Returned From

BirdsEyeView.FieldsOfView