LocalCoordinate

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

Example

application = cf.Application.getInstance()
project = application:NewProject()
cuboid = project.Contents.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

Inheritance

The LocalCoordinate object is derived from the CompositeValue object.

The following objects are derived (specialisations) from the LocalCoordinate object:

Usage locations

The LocalCoordinate 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