SpecifiedRequestPoints
The Specified request point positions.
Example
application = cf.Application.getInstance() project = application: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.Contents.SolutionConfigurations[1].NearFields:AddSpecifiedPoints(points) -- Modify the N coordinate of the last NearField point nearField.SpecifiedRequestPoints.Points[3].N = 2.0
Inheritance
The SpecifiedRequestPoints object is derived from the CompositeValue object.
Usage locations
The SpecifiedRequestPoints object can be accessed from the following locations:
- Properties
- NearField object has property SpecifiedRequestPoints.
- Methods
- SpecifiedRequestPointsList object has method Append().
- SpecifiedRequestPointsList object has method Get(number).
Property List
- Points
- The collection of specified request points. (Read/Write LocalInternalCoordinateList)
Property Details
- Points
- The collection of specified request points.
- Type
- LocalInternalCoordinateList
- Access
- Read/Write