PEConstructSpline.mesa
Copyright (C) 1984 by Xerox Corporation. All rights reserved.
Written by Darlene Plebon on August 23, 1983 5:08 pm
Routines providing a client interface to the Path Editor.
PEConstructSpline: CEDAR DEFINITIONS =
BEGIN
Point: TYPE = PETypes.Point;
LinkBetaSplineSegments:
PROCEDURE [changedSegList: PETypes.SegmentList, segment: PETypes.SegmentNodeRec]
RETURNS [newSegmentList: PETypes.SegmentList] ;
This routine inserts a vertex at the head of a vertex list, inserts the vertex list into a segment node, and inserts the segment at the head of a segment list which it returns.
BuildBetaSplineTrajectory: PROCEDURE [segmentList: PETypes.SegmentList] RETURNS [splineTrajectory: PETypes.Trajectory];