CartesianRequestPoints

The Cartesian request point positions.

Example

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

    -- Add a NearFiled starting at (1,0,0) ending at (0,0,0) with 11 points along X

nearField = project.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.Start.U

    -- Get the U coordinate of the end of the NearField, which is 0

endU = cartesianRequestPoints.End.U



Usage locations (object properties)

The following objects have properties using the CartesianRequestPoints object:

Property List

End
The end point. (Read only LocalCartesianPoint)
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment. (Read only LocalCartesianPoint)
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints. (Read only LocalCartesianPoint)
Start
The start point. (Read only LocalCartesianPoint)

Property Details

End
The end point.
Type
LocalCartesianPoint
Access
Read only
Increment
The increment per axis. Only valid if PointSpecificationMethod is Increment.
Type
LocalCartesianPoint
Access
Read only
NumberOfPoints
The number of points per axis. Only valid if PointSpecificationMethod is NumberOfPoints.
Type
LocalCartesianPoint
Access
Read only
Start
The start point.
Type
LocalCartesianPoint
Access
Read only