SphericalDescription

The description of an analytical curve using the spherical coordinate system.

Example

application = cf.Application.GetInstance()
project = application:NewProject()

    -- Define three local variables used to create a spherical analytical curve

R = "t*sqrt(1+t^2)"
theta = "90"
phi = "deg(arctan(t))"

analyticalCurve = project.Contents.Geometry:AddAnalyticalCurveSpherical(0, 1, R, theta, phi)

    -- Access the spherical description

analyticalCurve.SphericalDescription.R = "10*t*sqrt(1+t^2)"
analyticalCurve.SphericalDescription.Theta = 80

Inheritance

The SphericalDescription object is derived from the CompositeValue object.

Usage locations

The SphericalDescription object can be accessed from the following locations:

Property List

Phi
The curve description in the phi dimension as a function of variable t. (Read/Write ParametricExpression)
R
The curve description in the R dimension as a function of variable t. (Read/Write ParametricExpression)
Theta
The curve description in the theta dimension as a function of variable t. (Read/Write ParametricExpression)

Property Details

Phi
The curve description in the phi dimension as a function of variable t.
Type
ParametricExpression
Access
Read/Write
R
The curve description in the R dimension as a function of variable t.
Type
ParametricExpression
Access
Read/Write
Theta
The curve description in the theta dimension as a function of variable t.
Type
ParametricExpression
Access
Read/Write