PointRange
A range of points defined between a start and end point.
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)
Inheritance
The PointRange object is derived from the CompositeValue object.
Usage locations
The PointRange object can be accessed from the following locations:
- Properties
- FarField object has property U.
- FarField object has property V.
- CartesianRequestPoints object has property N.
- CartesianRequestPoints object has property U.
- CartesianRequestPoints object has property V.
- ConicalRequestPoints object has property Rho.
- ConicalRequestPoints object has property Z.
- CylindricalRequestPoints object has property Rho.
- CylindricalRequestPoints object has property Z.
- CylindricalXRequestPoints object has property Rho.
- CylindricalXRequestPoints object has property X.
- CylindricalYRequestPoints object has property Rho.
- CylindricalYRequestPoints object has property Y.
- SphericalRequestPoints object has property Radius.
- Methods
- PointRangeList object has method Append().
- PointRangeList object has method Get(number).
Property List
- End
- The end point. (Read/Write PointRangeExpression)
- Increment
- The increment per axis. Only valid if PointSpecificationMethod is Increment. (Read/Write ParametricExpression)
- NumberOfPoints
- The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints. (Read/Write ParametricExpression)
- Start
- The start point. (Read/Write PointRangeExpression)
Property Details
- End
- The end point.
- Type
- PointRangeExpression
- Access
- Read/Write
- Increment
- The increment per axis. Only valid if PointSpecificationMethod is Increment.
- Type
- ParametricExpression
- Access
- Read/Write
- NumberOfPoints
- The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints.
- Type
- ParametricExpression
- Access
- Read/Write
- Start
- The start point.
- Type
- PointRangeExpression
- Access
- Read/Write