SpecifiedRequestPoints

The Specified request point positions.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a NearField by specifying a table of arbitrary points

points = {}
points[1] = cf.Point(0.3,0.1,0.0)
points[2] = cf.Point(0.3,0.7,0.0)
points[3] = cf.Point(0.7,0.7,0.0)

nearField = project.SolutionConfigurations[1].NearFields:AddSpecifiedPoints(points)

    -- Modify the N coordinate of the last NearField point

nearField.SpecifiedRequestPoints.Points[3].N = 2.0

Usage locations (object properties)

The following objects have properties using the SpecifiedRequestPoints object:

Collection List

Points
The collection of specified request points. (SpecifiedRequestPointsCollection of LocalCoordinates.)

Collection Details

Points
The collection of specified request points.
Type
SpecifiedRequestPointsCollection