CartesianRequestPoints
The Cartesian request point positions.
Example
application = cf.Application.GetInstance() project = application:NewProject() -- Add a NearField starting at (1,0,0) ending at (0,0,0) with 11 points along X nearField = project.Contents.SolutionConfigurations[1].NearFields:AddCartesian(1,0,0, 0,0,0, 11,1,1) cartesianRequestPoints = nearField.CartesianRequestPoints -- Get the U coordinate of the start of the NearField, which is 1 startU = cartesianRequestPoints.U.Start -- Get the U coordinate of the end of the NearField, which is 0 endU = cartesianRequestPoints.U.End
Inheritance
The CartesianRequestPoints object is derived from the CompositeValue object.
Usage locations
The CartesianRequestPoints object can be accessed from the following locations:
- Properties
- NearField object has property CartesianRequestPoints.
- Methods
- CartesianRequestPointsList object has method Append().
- CartesianRequestPointsList object has method Get(number).
Property List
- N
- The N range of points. (Read/Write PointRange)
- U
- The U range of points. (Read/Write PointRange)
- V
- The V range of points. (Read/Write PointRange)
Property Details
- N
- The N range of points.
- Type
- PointRange
- Access
- Read/Write
- U
- The U range of points.
- Type
- PointRange
- Access
- Read/Write
- V
- The V range of points.
- Type
- PointRange
- Access
- Read/Write