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:

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