Creating offset cylindrical centerlines using offset distance.
$$
$$ Declarations
$$
NUMBER/DIST1,DIST2,A,B
ENTITY/OBJ1,OBJ2,OBJARR(2),COBJ1,COBJ2
$$
$$ Define variables
$$
DIST1 = 75.6
DIST2 = 111.5
A = -40.0
B = -5.0
$$
$$ Geometry Definitions
$$
OBJ1 = POINT/0.0+A,0.0+B
OBJ2 = POINT/10.0+A,5.0+B
OBJARR(1) = POINT/0.0+A,-2.0+B
OBJARR(2) = CIRCLE/3.0+A,-8.0+B,.65
COBJ1 = CIRCLE/0.0+A,0.0+B,1
COBJ2 = CIRCLE/10.0+A,5.0+B,0.5
$$
$$ Offset Cylindrical Centerline Definition -
$$ using OFFDST (offset distance),
$$ and using point objects
$$
CLINE/OFFCYL,OFFDST,200.0,OBJ1,OBJ2
$$
$$ Offset Cylindrical Centerline Definition - using OFFDST
$$ (offset distance) and arc objects
$$
CLINE/OFFCYL,OFFDST,DIST1,COBJ1,COBJ2
$$
$$ Offset cylindrical centerline definition - using OFFDST
$$ (offset distance) and an array (point and arc objects)
$$
CLINE/OFFCYL,OFFDST,DIST2,OBJARR
$$
$$ Program continues
$$
.
.
.