LocalInternalCoordinate

Local coordinates typically define positions relative to the coordinate system of a 'LocalWorkplane'.

Example

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

    -- Create a fitted spline from a list of LocalInternalCoordinate

points = {}
points[1] = cf.Point(1,0,0)
points[2] = cf.Point(1,1,0)
points[3] = cf.Point(1,1,1)
fittedSpline = project.Contents.Geometry:AddFittedSpline(points)

Inheritance

The LocalInternalCoordinate object is derived from the LocalCoordinate object.

Usage locations

The LocalInternalCoordinate object can be accessed from the following locations:

Property List

N
The local N coordinate. (Read/Write Dimension)
U
The local U coordinate. (Read/Write Dimension)
V
The local V coordinate. (Read/Write Dimension)

Property Details

N
The local N coordinate.
Type
Dimension
Access
Read/Write
U
The local U coordinate.
Type
Dimension
Access
Read/Write
V
The local V coordinate.
Type
Dimension
Access
Read/Write