LocalCoordinates

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

Example

app = cf.GetApplication()
project = app:NewProject()
cuboid = project.Geometry:AddCuboid(cf.Point(0, 0, 0), 1, 1, 1)

    -- Modify the origin (local coordinates) of the cuboid
    
cuboid.Origin.U = 2.5
cuboid.Origin.V = -0.5
cuboid.Origin.N = 1

Usage locations (object properties)

The following objects have properties using the LocalCoordinates object:

Property List

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

Property Details

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